
Originally Posted by
Ajeh
Look at your override file:
/home2/limelih7/public_html/includes/templates/your_template_dir/templates/tpl_advanced_search_default.php
and find the line that contains this:
zen_draw_pull_down_menu
What does the code in the 5 lines before it and 5 lines after it read?
My file has
Code:
<br class="clearBoth" />
</fieldset>
<fieldset class="floatingBox back">
<legend><?php echo ENTRY_CATEGORIES; ?></legend>
<div class="floatLeft"><?php echo zen_draw_pull_down_menu('categories_id', zen_get_categories(array(array('id' => '', 'text' => TEXT_ALL_CATEGORIES)), '0' ,'', '1'), $sData['categories_id']); ?></div>
<?php echo zen_draw_checkbox_field('inc_subcat', '1', $sData['inc_subcat'], 'id="inc-subcat"'); ?><label class="checkboxLabel" for="inc-subcat"><?php echo ENTRY_INCLUDE_SUBCATEGORIES; ?></label>
<br class="clearBoth" />
</fieldset>
<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)), PRODUCTS_MANUFACTURERS_STATUS), $sData['manufacturers_id']); ?>
<br class="clearBoth" />
</fieldset>
<br class="clearBoth" />
Bookmarks