Zen Cart Logo
Forums / General Questions / Remove Manufacturer from Advanced Search

Remove Manufacturer from Advanced Search

Locked

Views: 2,381

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
2 May 2009, 5:11 PM
#1
kwarner avatar

kwarner

New Zenner

Join Date:
Dec 2008
Posts:
16
Plugin Contributions:
0

Remove Manufacturer from Advanced Search

How do I remove the "Limit to Manufacturer" option from the Advanced Search page/function?

2 May 2009, 8:37 PM
#2
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,286
Plugin Contributions:
39

Re: Remove Manufacturer from Advanced Search

Comment the function out in

includes/templates/YOUR_TEMPLATE/templates/tpl_advanced_search_default.php

Something like this

<fieldset class="floatingBox forward">

    <legend><?//php echo ENTRY_MANUFACTURERS; ?></legend>

    <?php //echo zen_draw_pull_down_menu('manufacturers_id', zen_get_manufacturers(array(array('id' => '', 'text' => TEXT_ALL_MANUFACTURERS))), $sData['manufacturers_id']); ?>

<br class="clearBoth" />

</fieldset>

~Melanie