Quote:
Originally Posted by trifletraxor How to change the default perpage?  |
Its determined by the show category option & some multiplies in the showcat.php file.
Show Category Options: "Number of columns for thumbnail pages"
That will be the # used in the multiplier of the dropdown.
So say you have that set to 4 ...
The drop down would show 12,16,20,24
If you want to change that, Open up showcat.php and look for this around line 156 ...
$perpage1x = $Globals['thumbcols'];
$perpage3x = ($perpage1x * 3);
$perpage4x = ($perpage1x * 4);
$perpage5x = ($perpage1x * 5);
$perpage6x = ($perpage1x * 6);
Change those multipliers (3,4,5,6) and change the default # of columns to get what you want in the drop down.