New Zenner
- Join Date:
- Oct 2008
- Posts:
- 38
- Plugin Contributions:
- 0
Is it possible....
Id sure like to know if its possible. Or even disable the entire header on all pages other than the home page.
Thanks for the help....
New Zenner
New Zenner
Oba-san
Categories-Tabs Menu ON/OFF
Categories-Tabs
This enables the display of your store's categories as a menu across the top of your header. There are many potential creative uses for this.
0= Hide Categories Tabs
1= Show Categories Tabs
Deceased
RichardKletty:
Yes I just want to get rid of the category links on the middle top of the page and actually if I can get rid of them on every page that would be great. I dont even nee them on the home page since I have the links displayed below the top category list.
Never mind, I got it... Its in the admin.
<!--bof-optional categories tabs navigation display-->
<?php 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-->if ($this_is_home_page) {
<!--bof-optional categories tabs navigation display-->
<?php 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-->
}Totally Zenned
My apologies for bumping such and old post.. This is the closest solution I've found to what I would like to do..clydejones:
If you want them to show only on the main page then open
includes/templates/YOUR_TEMPLATE/common/tpl_header.php
find the following section of code
and change it as follows:<!--bof-optional categories tabs navigation display--> <?php 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-->
Save the file and upload to your serverif ($this_is_home_page) { <!--bof-optional categories tabs navigation display--> <?php 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--> }
Deceased
DivaVocals:
My apologies for bumping such and old post.. This is the closest solution I've found to what I would like to do..
How would I apply this change to ONLY the Contact Us page?? (Turn off category tabs on the Contact Us page only)
Totally Zenned
Arrghhh.. it didn't work.. :frusty: curses.. foiled again.. :laugh:clydejones:
try this
if ($currentpagebase != 'contact_us') {
<!--bof-optional categories tabs navigation display-->
<?php 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-->
}
Deceased
DivaVocals:
Arrghhh.. it didn't work.. :frusty: curses.. foiled again.. :laugh:
Totally Zenned
Clyde.. You are a true gentleman.. bless you for helping..:smile: that didn't work either..clydejones:
my bad...
if ($current_page_base != 'contact_us') {
<!--bof-optional categories tabs navigation display-->
<?php 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-->
}
Deceased
DivaVocals:
Clyde.. You are a true gentleman.. bless you for helping..:smile: that didn't work either..
Totally Zenned
I could kiss you!!!:clap:clydejones:
Ok one more time:
<?php if ($current_page_base != 'contact_us') { ?>
<!--bof-optional categories tabs navigation display-->
<?php 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-->
<?php } ?>
Deceased
DivaVocals:
I could kiss you!!!:clap:
You are the BEST... thanks so much for the hand.. :smile:
New Zenner
Destination thread ID and reason are required when shown.
Tell staff why this post should be reviewed.
Required for login, security, and core site functionality.
Help us understand how the site is used so we can improve it.
Used for promotion and personalized campaign measurement.