Magento 1.9 – Fix Error in Catalog View Layered Navigation Filter

filterfiltered-navmagento-1.9

This is the block from my catalogsearch.xml

<reference name="left">
        <block type="catalogsearch/layer" name="catalogsearch.leftnav" after="currency" template="catalog/layer/view.phtml"/>
    </reference>

The selected filters are displaying multiple time.I tried changing the type and still no change,
Please Help.
enter image description here

update :

in my catalog\layer\state.phtml

$_filters = $this->getActiveFilters();
count($_filters) 

is returning me 3 which should be only one .Please help why this is happening

Best Answer

check the xml for duplicate catalogsearch.leftnav block

Related Topic