forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: macmiller on August 13, 2011, 04:36:40 pm

Title: different number of categories depending on page
Post by: macmiller on August 13, 2011, 04:36:40 pm
There is a config item: Number of levels of categories to display which indicates the depth of categories to display.  I would like to modify the behavior slightly, on the initial 'front page' index.php I would like to have one level of categories displayed and on other 'drill down' pages a different level.  (ie. on index.php say the level is 1 and in index.php?cat=xx say the level is 4).

Is there a way to tell from within the script index.php whether or not we are on the front page (index.php) or on another page?  Any suggestions on the easiest way to accomplish this mod?
Title: Re: different number of categories depending on page
Post by: Αndré on August 15, 2011, 11:13:41 am
Open index.php, find
Code: [Select]
if ($superCage->get->keyExists('cat')) {
    $cat = $superCage->get->getInt('cat');
}
and below, add
Code: [Select]
$CONFIG['subcat_level'] = $cat ? 4 : 1;
Title: Re: different number of categories depending on page
Post by: macmiller on August 19, 2011, 03:39:11 pm
Andre:  this worked, thanks ;D