Zen Cart Logo
Forums / Basic Configuration / How to remove horizontal categories bar

How to remove horizontal categories bar

Locked

Views: 2,756

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
12 Feb 2007, 7:42 PM
#1
nicedreams avatar

nicedreams

New Zenner

Join Date:
Dec 2006
Location:
UK
Posts:
32
Plugin Contributions:
0

How to remove horizontal categories bar

Is there a setting in the admin panel or some code to adjust which will remove the horizontal product category links under the header? I want to keep the bar there and insert a telephone number (or similar) instead. Any advice appreciated.

12 Feb 2007, 8:03 PM
#2
pierre avatar

pierre

New Zenner

Join Date:
Oct 2006
Posts:
84
Plugin Contributions:
0

Re: How to remove horizontal categories bar

Look in your admin->Layout Settings for Categories-Tabs Menu ON/OFF and turn it off.

You can edit the file includes\templates\template_default\templates\tpl_modules_categories_tabs to add your custom content.

12 Feb 2007, 8:22 PM
#3
nicedreams avatar

nicedreams

New Zenner

Join Date:
Dec 2006
Location:
UK
Posts:
32
Plugin Contributions:
0

Re: How to remove horizontal categories bar

Thanks Pierre. Thanks for the quick answer!

12 Feb 2007, 8:22 PM
#4
pierre avatar

pierre

New Zenner

Join Date:
Oct 2006
Posts:
84
Plugin Contributions:
0

Re: How to remove horizontal categories bar

Edit the file to look like

<?php
 if (CATEGORIES_TABS_STATUS == '1') { ?>
<div id="navCatTabsWrapper">
<div id="navCatTabs">
ENTER YOUR CONTENT HERE
</div>
</div>
<?php } ?>
```To still be able to turn it on or off in the admin.