Zen Follower
- Join Date:
- Mar 2006
- Posts:
- 102
- Plugin Contributions:
- 0
turn offcategories-tab menu on every page except the main
I'm trying to turn off the categories-tab menu for every page except the main (first) page. I added and $_GET['main_page'] == 'index') to tpl_header and it got me a little closer but it still shows the tab-menu on the category pages.
<!--bof-optional categories tabs navigation display-->
<?php
if (CATEGORIES_TABS_STATUS == '1' and $_GET['main_page'] == 'index') {
require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php');
}
?>
<!--eof-optional categories tabs navigation display-->
I'll keep playing 'round with it but if someone could help me out I'd appreciate it.