Jump to content

Removing link from "Information" header


Recommended Posts

I have a CMS block on the left side entitled "Information".  There are 3 items displayed in the cms block, which is what I want.  What I would like to remove is the link on the header.  Is there any good way to do this?

 

Thanks in advance.

 

I am still on Prestashop 1.5.6

Link to comment
Share on other sites

open module file blockcms.tpl

there is a code like:

			<h4 class="title_block">
				<a href="{$cms_title.category_link|escape:'html'}">{if !empty($cms_title.name)}{$cms_title.name}{else}{$cms_title.category_name}{/if}</a>
			</h4>

change it to:

			<h4 class="title_block">
				{if !empty($cms_title.name)}{$cms_title.name}{else}{$cms_title.category_name}{/if}
			</h4>
Link to comment
Share on other sites

×
×
  • Create New...