1stshops Posted November 27, 2014 Share Posted November 27, 2014 Hello, I have some special Request. Everytime when I change a category in the left side Menu the Header changes from Category to the name of the chosen Category. Is there any way to keep "Category" as the header and Switch off the change? Link to comment Share on other sites More sharing options...
mickeyboy1 Posted November 27, 2014 Share Posted November 27, 2014 (edited) In themes/your-theme/modules/blockcategories/blockcategories.tpl find this code at the top of the file <h2 class="title_block"> {if isset($currentCategory)} {$currentCategory->name|escape} {else} {l s='Categories' mod='blockcategories'} {/if} </h2> And change it to <h2 class="title_block"> {l s='Categories' mod='blockcategories'} </h2> You can have any title you want by changing {l s='Categories' Edited November 27, 2014 by mickeyboy1 (see edit history) Link to comment Share on other sites More sharing options...
1stshops Posted November 27, 2014 Author Share Posted November 27, 2014 In themes/your-theme/modules/blockcategories/blockcategories.tpl find this code at the top of the file <h2 class="title_block"> {if isset($currentCategory)} {$currentCategory->name|escape} {else} {l s='Categories' mod='blockcategories'} {/if} </h2> And change it to <h2 class="title_block"> {l s='Categories' mod='blockcategories'} </h2> You can have any title you want by changing {l s='Categories' Thank you very much, that's it :-) Link to comment Share on other sites More sharing options...
Recommended Posts