Jump to content

Recommended Posts

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

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

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

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

×
×
  • Create New...