srjacob Posted May 15, 2014 Share Posted May 15, 2014 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 More sharing options...
Paulito Posted May 15, 2014 Share Posted May 15, 2014 Good morning I am not sure which links you want ro remove from header Do you mean this CMS block http://screencast.com/t/nsxcBZjNI Paul Link to comment Share on other sites More sharing options...
srjacob Posted May 15, 2014 Author Share Posted May 15, 2014 Yes. In the Header with the name of the CMS block ("Information" in this case), there is a link. I would like to remove that link. I am unclear why there is a link there at all. Link to comment Share on other sites More sharing options...
vekia Posted May 15, 2014 Share Posted May 15, 2014 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 More sharing options...
srjacob Posted May 15, 2014 Author Share Posted May 15, 2014 Vekia, Thank you very much. That worked perfectly. Prestashop should make this a standard part of the CMS module. Steve Link to comment Share on other sites More sharing options...
Recommended Posts