Store ID: 32722
Website URL:
http://www.meinehandtasche.de/
URL to page in question:
http://www.meinehandtasche.de/store/
Hi Eric,
I am working on a price filter as drop down that works together with the drop down
brand filter.
Currently I just use the following which works perfectly but it would be much nicer to have a drop down:
I pasted within / Factory > Widgets > new brand filter widget the following code in a / text / widget view module:
Quote:
Prices:
<ul>
<?php if (@$_GET['price']) { ?>
<li><a href="[server.url type='fullpage' query='-price']">[X] delete price filter</a></li>
<?php } else { ?>
<li><a href="[server.url type='fullpage' query='price=-50']">< € 50</a></li>
<li><a href="[server.url type='fullpage' query='price=50-100']">€ 50 - 100</a></li>
<li><a href="[server.url type='fullpage' query='price=100-150']">€ 100 - 150</a></li>
<li><a href="[server.url type='fullpage' query='price=150-250']">€ 150 - 250</a></li>
<li><a href="[server.url type='fullpage' query='price=250-500']">€ 250 - 500</a></li>
<li><a href="[server.url type='fullpage' query='price=500-1000']">€ 500 - 1.000</a></li>
<li><a href="[server.url type='fullpage' query='price=1000-']">> € 1.000</a></li>
<?php } ?>
</ul>
|
How can I get this done as a drop down as mentioned above?
Thanks,
Oliver