How to Remove Price Filter Section from Layered Navigation – Magento 1.9

layered-navigationmagento-1.9

Iam trying hard but still not getting to remove SHOP BY and PRICE FILTER SECTIONS from layered navigation please help me in removing those items.

enter image description here

Best Answer

Sorry for Downvote actually this is basic question..!!

for removing Price filter Goto Catalog->manage attributes find price attribute and select no in the option Use In Layered Navigation.

for removing SHOP BY goto app/design/frontend/your_theme/default/template/catalog/navigation and in left.phtml file find this code

<div class="block-title">
        <strong><span><?php echo $this->__('Browse By') ?></span></strong>
    </div>

and then put echo in comments. Hope it works.

Related Topic