Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
It seems there is no simple way to just turn off comments, believe it or not.
Posted By: Drive002Is there a way to increase the number of displayed messages on the feedback tab in the Plogger admin console?Sure you can. Just open 'Plogger/admin/plog-functions.php' and look for the following code:
Lets say, increase the maximum entries per page from 50 to 500 for instance?
$possible_values = array("5"=>5, "10"=>10, "20"=>20, "50"=>50);
Then add any values you want:$possible_values = array("5"=>5, "10"=>10, "20"=>20, "50"=>50, "100"=>100, "250"=>250, "500"=>500);
if (!isset($_SESSION['entries_per_page'])) $_SESSION['entries_per_page'] = 20;
and change it to equal whatever you want for the defaults.
1 to 20 of 20