Jump to content

Hiding categories in columns on Homepage


Recommended Posts

Hello,

 

How can i disable the the categories in the sidebar on the homepage, but making it visible in any other view, like the product view, category view etc.

Is that possible?

Also on the CMS block module in the footer i cant seem to change the maximum amount of categorys displayed, changing the depth in the module settings does nothing.

Link to comment
Share on other sites

I never did it before but I guess you can try editing "blockcategories.tpl" inside modules/blockcategories

and change line 28: <div id="categories_block_left" class="block">

to

 

{if $page_name == 'index'}

<div id="categories_block_left" class="block" style="display:none;">

{else}

<div id="categories_block_left" class="block">

{/if}

Link to comment
Share on other sites

×
×
  • Create New...