i am wondering if any one could help me out and modify my product filter so that each of my categories are in a seperate drop down box and then the user clicks a search button to search for products matching that criteria?
the way it is at the moment is that all categories are in one drop down box and once you click a category or sub category, those products are displayed.
i am after something like the product filter on this website http://www.jigsawpuzzlesdirect.co.uk/ (the product filter is at the top of the left column.
my code is below
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('text' => BOX_HEADING_FILTER);
new infoBoxHeading($info_box_contents, true, false);
$info_box_contents = array();
$cat_choose = '';
$categories_array = tep_get_categories($cat_choose);
$info_box_contents[] = array('form' => '<form action="' . tep_href_link(FILENAME_DEFAULT) . '" method="get">',
'align' => 'center',
'text' => '<br><br>' . tep_draw_pull_down_menu('cPath', $categories_array,'','onChange="this.form.submit();" style="width:115"')
);
new infoBox($info_box_contents);
?>
</td>
</tr>














