Zen Cart Logo
Forums / Basic Configuration / Disable Manufacturer drop down box, also currency and language

Disable Manufacturer drop down box, also currency and language

Locked

Views: 7,020

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
4 Apr 2009, 1:42 PM
#1
apple_pet_supply avatar

apple_pet_supply

New Zenner

Join Date:
Feb 2008
Posts:
7
Plugin Contributions:
0

Disable Manufacturer drop down box, also currency and language

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

4 Apr 2009, 2:03 PM
#2
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: Disable Manufacturer drop down box, also currency and language

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.

4 Apr 2009, 2:23 PM
#3
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: Disable Manufacturer drop down box, also currency and language

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.

8 Oct 2010, 5:26 PM
#4
ginge avatar

ginge

New Zenner

Join Date:
May 2010
Posts:
8
Plugin Contributions:
0

Re: Disable Manufacturer drop down box, also currency and language

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>