I have a number of filters on my productlist page that works just fine. But when I put a ProductCategoryField-filter on the page then the page takes several minutes to render and the CPU hits the roof. Here is the code in the template for the filter. Any ideas?
Regards / Aki
<div class="choice-block">
<ul class="choice-list">
<!--@LoopStart(Ecom:Filters.ProductFields.Rows)-->
<!--@If(Ecom:Filters.ProductFields.Row.TotalFormatted>0-->
<li>
<a href="#"><span><!--@Ecom:Filters.ProductFields.Row.Value--> <input type="checkbox" id="Checkbox1" name="<!--@Filters:Current.TagName-->" value="<!--@Ecom:Filters.ProductFields.Row.Value-->" <!--@Ecom:Filters.ProductFields.Row.CheckedState--> /></span></a>
</li>
<!--@EndIf-->
<!--@LoopEnd(Ecom:Filters.ProductFields.Rows)-->
</ul>
</div>