View Single Post
Old September 12th, 2005, 03:12 PM   #6 (permalink)
rbl
Senior Member
Verified Customer
 
Join Date: Aug 2003
Location: Portugal
Posts: 492
Send a message via AIM to rbl Send a message via MSN to rbl
Re: Subcategories in first page only

For future reference or anyone with a similar request, the instructions are:
- open browseimages.php and search for:
$show['subcats'] = iif($subcatbits = print_categories($catinfo['catid']), true);

- replace by:
// Mod to display subcategories only in the first page
// $show['subcats'] = iif($subcatbits = print_categories($catinfo['catid']), true);
if ($page == 1 OR !$page)
{
$show['subcats'] = iif($subcatbits = print_categories($catinfo['catid']), true);
}
}
rbl is offline   Reply With Quote