I need help disabling the Manufacturer drop down box as well as the language and currency options at the top of the page.
I have tried disabling the sideboxes but they are already defaulted at off.
Any input would be appreciated.
Thank yolu
I need help disabling the Manufacturer drop down box as well as the language and currency options at the top of the page.
I have tried disabling the sideboxes but they are already defaulted at off.
Any input would be appreciated.
Thank yolu
Zen Cart doesn't have language and currency in the header by default, so this suggests that you are using a custom template where the author has hard-coded these features into the template. Unfortunately, without having seen your site, or knowing more about your template, there's not a whole lot that we can advise.
See and test drive Zen Cart's free templates at zencarttemplates.info
Kuroi Web Design and Development | Twitter
(Questions answered in the forum only - so that any forum member can benefit - not by personal message)
I've now seen a link to your site in another thread, and taken a look at it. It's structure is completely unlike the normal Zen Cart layout, and uses some older approaches, so without knowing it I can only make guesses at how it is structured behind the screens.
I'd take a look at the templates common/tpl_header.php file and look for a div with the class "table". Remove that and its contents and that should remove the items that you don't want.
See and test drive Zen Cart's free templates at zencarttemplates.info
Kuroi Web Design and Development | Twitter
(Questions answered in the forum only - so that any forum member can benefit - not by personal message)
On my shop it was a file called tpl_top_nav.php
Just removed the table for the currency + languages.
THis:
<td class="td-languages">
<div class="languages-wrapper">
<?php require($template->get_template_dir('tpl_header_currencies.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_header_currencies.php');
echo $content;?>
<label class="float-right"><?php echo HEADER_CURRENCY;?></label>
<?php require($template->get_template_dir('tpl_header_languages.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_header_languages.php');
echo $content;?>
<label class="float-right"><? echo HEADER_LANGUAGES;?></label>
<div class="clearBoth"></div>
</div>
</td>
Bookmarks