Magento 1.9 – How to Change SHOP BY Text in Left Sidebar

filterlayered-navigationmagento-1.9

How to change the text SHOP BY from left sidebar at category page in Magento?

I want to change this text SHOP BY to another.

Best Answer

I found the solution for my own question.

To get this Please open this path:

Magento 1 :

app/design/frontend/default/YOURTHEME/template/catalog/layer/view.phtml

Change the class name "block-title" to something else.

Magento 2x:

vendor/magento/module-layered-navigation/view/frontend/templates/layer/view.phtml  

Copy to Theme Path

app/design/frontend/Smartwave/porto_child/Magento_LayeredNavigation/templates/layer/view.phtml

Change Code:

div class="block-title filter-title">
            <strong><?= $block->escapeHtml(__('Shop By New Text Here..')) ?></strong>
        </div>