Hi,

I am currently using zencart 1.3.5 and I am doing this on a test machine. I modded manufacturers_select.php and threw it into my custom_template\sideboxes. And zencart is not using the modded file. My modded manufacturers_select.php works, when i copy over the orignal file in template_default\sideboxes. My modded manufacturers_select basically makes a list menu instead of the default pull down menu. Need help with the override system, here is my modded code:

$content = "";
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent centeredContent">';
$content.= zen_draw_form('manufacturers', zen_href_link(FILENAME_DEFAULT, '', 'NONSSL', false), 'get');
$content .= zen_draw_pull_down_menu('manufacturers_id', $manufacturer_sidebox_array, (isset($_GET['manufacturers_id']) ? $_GET['manufacturers_id'] : ''), 'onchange="this.form.submit();"') . $hidden_get_variables . zen_hide_session_id();
$content .= zen_draw_hidden_field('main_page', FILENAME_DEFAULT) . '</form>';
$content .= '</div>';