Jump to content

[SOLVED] Editing headings in Footer block


GMM148

Recommended Posts

Hi Nemo, thanks. Opened it up but not sure what to edit. What I have in the file is below:

 

<!-- Block categories module -->
<div id="categories_block_left" class="block">
    <p class="title_block">{l s='Categories' mod='blockcategories'}</p>
    <div class="block_content">
        <ul class="tree {if $isDhtml}dhtml{/if}">
        {foreach from=$blockCategTree.children item=child name=blockCategTree}
            {if $smarty.foreach.blockCategTree.last}
                {include file="$branche_tpl_path" node=$child last='true'}
            {else}
                {include file="$branche_tpl_path" node=$child}
            {/if}
        {/foreach}
        </ul>
        {* Javascript moved here to fix bug #PSCFI-151 *}
        <script type="text/javascript">
        // <![CDATA[
            // we hide the tree only if JavaScript is activated
            $('div#categories_block_left ul.dhtml').hide();
        // ]]>
        </script>
    </div>
</div>
<!-- /Block categories module -->

Link to comment
Share on other sites

Remove this:

 

<p class="title_block">{l s='Categories' mod='blockcategories'}</p>

 

but notice it will get removed from the site menu as well, if you use it.

 

After changing it, go to advanced parameters, performance and clear smarty cache ;)

Link to comment
Share on other sites

Hi there, can anyone assist?

 

I want to remove the 'Specials' 'New Products' and 'Top Sellers' from the footer on the front page of www.kittags.co.uk.

 

Much appreciate advice on how this is done.

 

Thanks

 

Giles

 

Go to themes/YOUR_THMES_FOLDER/modules/blockcms and edit blockcms.tpl file and remove below code from this file..

{if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')}" 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')}" 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')}" title="{l s='Top sellers' mod='blockcms'}">{l s='Top sellers' mod='blockcms'}</a></li>{/if}
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...