Quote:
|
Originally Posted by Chuck S Try putting it in showcat.php Code: Content visible to verified customers only.
|
Thank you
very much for the effort Chuck but there are quite a few $perpage in the file - i guess it should go somewhere in here:
}
$perpage1x = $Globals['thumbcols'];
$perpage3x = ($perpage1x * 3);
$perpage4x = ($perpage1x * 4);
$perpage5x = ($perpage1x * 5);
$perpage6x = ($perpage1x * 6);
if ( !empty($perpage) ) {
if ( $perpage > 90 ) $perpage = 90;
if ($perpage < $perpage1x) $perpage = $perpage1x;
}
else {
if ( isset($rpperpage) ) $perpage = $rpperpage;
else $perpage = $perpage3x;
}
if ( isset($page) && $page > 0 ) {
$startnumb = ($page*$perpage)-$perpage+1;
}
Hate to be a pain but could you please mark with red which one i should replace - or does it have to be added somewhere else? I guess i have to keep the:
<?
$perpage="24";
in the templates
Thank you