Jump to content

How to switch off Header Text Change in Side Menu


1stshops

Recommended Posts

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 by mickeyboy1 (see edit history)
Link to comment
Share on other sites

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

×
×
  • Create New...