I’m trying to filter multiple categories using dynamic parameters but looking at this archive thread http://ellislab.com/forums/viewthread/105576/#531808 it doesn’t seen possible.
Does anyone have a solution for this?
And here’s the code I’ve been using.
{exp:channel:entries channel="products" dynamic_parameters="category"}
<div class="product">
<h2>{title}</h2>
<p>{product_description}<br />
<ul><br />
<li>{product_price}</li><br />
<li>{product_lift_height}</li><br />
<li>{product_fuel}</li><br />
<li>{product_transmission}</li><br />
<li>{product_doors}</li><br />
<li>{product_year}M</li><br />
<li>{product_capacity}</li><br />
</ul><br />
</div></p>
<p>{/exp:channel:entries}</p>
<p><form method="post" action="{path='site/index'}"><br />
<select name="category"><br />
<option value="">-- Manufacturer --</option><br />
{exp:child_categories parent="3" child_categories_sort_direction="asc" show_empty="yes"}<br />
{child_category_start}<br />
<option value="{child_category_id}">{child_category_name}</option><br />
{child_category_end}<br />
{/exp:child_categories}<br />
</select><br />
<br />
<select name="category"><br />
<option value="">-- Model --</option><br />
{exp:child_categories parent="2" child_categories_sort_direction="asc" show_empty="yes"}<br />
{child_category_start}<br />
<option value="{child_category_id}">{child_category_name}</option><br />
{child_category_end}<br />
{/exp:child_categories}<br />
</select><br />
<input type="submit" value="Go!" /><br />
</form></p>
<p><br />
</body><br />
</html>Thanks,
Ka-Chun