darrenmagic Posted April 11, 2014 Share Posted April 11, 2014 (edited) Hi all, How do i get rid of the specials, new products and best sellers links from the footer bottom left information section? I have been going through all the modules and cant seem to find anything to get rid of the three links? Website is http://sherpapen.co.uk/ Thank you for you time Darren Edited April 11, 2014 by darrenmagic (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted April 11, 2014 Share Posted April 11, 2014 answer is here:http://www.prestashop.com/forums/topic/321481-footer-links/ Link to comment Share on other sites More sharing options...
darrenmagic Posted April 11, 2014 Author Share Posted April 11, 2014 Thanks I don't understand what i need to delete? Darren Link to comment Share on other sites More sharing options...
vekia Posted April 11, 2014 Share Posted April 11, 2014 hello i suggested there to: open file: themes/default-bootstrap/modules/blockcms/blockcms.tpl and remove /comment out this code: {if !$PS_CATALOG_MODE} <li class="first_item"> <a href="{$link->getPageLink('prices-drop')|escape:'html':'UTF-8'}" title="{l s='Specials' mod='blockcms'}"> {l s='Specials' mod='blockcms'} </a> </li> {/if} <li class="{if $PS_CATALOG_MODE}first_{/if}item"> <a href="{$link->getPageLink('new-products')|escape:'html':'UTF-8'}" title="{l s='New products' mod='blockcms'}"> {l s='New products' mod='blockcms'} </a> </li> {if !$PS_CATALOG_MODE} <li class="item"> <a href="{$link->getPageLink('best-sales')|escape:'html':'UTF-8'}" title="{l s='Top sellers' mod='blockcms'}"> {l s='Top sellers' mod='blockcms'} </a> </li> {/if} so you have to remove code that i mentioned above Link to comment Share on other sites More sharing options...
Paulito Posted April 11, 2014 Share Posted April 11, 2014 Good morning You do not need to delete anything and it is better if you do not All you need to do is Comment Out, that is use: {* code to comment out *} It is the {*. *} that stop things showing So just look at the Vekia solution, he gives you the code to Comment Out If you struggle with this then I can help further Paul Link to comment Share on other sites More sharing options...
darrenmagic Posted April 11, 2014 Author Share Posted April 11, 2014 Thank you i removed the above code and it works fine. Just wasn't sure which bit I was meant to delete! Darren Link to comment Share on other sites More sharing options...
Paulito Posted April 11, 2014 Share Posted April 11, 2014 As I said before, it is better not to delete, You never know when you want it again Paul Link to comment Share on other sites More sharing options...
darrenmagic Posted April 11, 2014 Author Share Posted April 11, 2014 I understand i have changed the code to this is this correct? {*if !$PS_CATALOG_MODE} <li class="first_item"> <a href="{$link->getPageLink('prices-drop')|escape:'html':'UTF-8'}" title="{l s='Specials' mod='blockcms'}"> {l s='Specials' mod='blockcms'} </a> </li> {/if} <li class="{if $PS_CATALOG_MODE}first_{/if}item"> <a href="{$link->getPageLink('new-products')|escape:'html':'UTF-8'}" title="{l s='New products' mod='blockcms'}"> {l s='New products' mod='blockcms'} </a> </li> {if !$PS_CATALOG_MODE} <li class="item"> <a href="{$link->getPageLink('best-sales')|escape:'html':'UTF-8'}" title="{l s='Top sellers' mod='blockcms'}"> {l s='Top sellers' mod='blockcms'} </a> </li> {/if*} Thank you for your time Darren Link to comment Share on other sites More sharing options...
vekia Posted April 12, 2014 Share Posted April 12, 2014 yes it looks okay in the future you will be easily to turn these links on (if you will want of course) Link to comment Share on other sites More sharing options...
Recommended Posts