Jump to content

How to remove information box in category menu?


Recommended Posts

Hi Prestashop members,

Please help me to remove information box from the category menu, for more information please see in the attachment.
Better if I can limit the characters in that box.

Thanks!

20048_kQ6cce8PwSqvz17HD2yK_t

Link to comment
Share on other sites

The wiznav module calls $branche_tpl_path to create that code. I think that points to category-tree-branch.tpl in your theme's directory. Change line 2 of it from:

<a href="{$node.link|escape:'htmlall':'UTF-8'}" {if $node.id == $currentCategoryId}class="selected"{/if} title="{$node.desc|escape:'htmlall':'UTF-8'}">{$node.name|escape:'htmlall':'UTF-8'}



to:

<a href="{$node.link|escape:'htmlall':'UTF-8'}" {if $node.id == $currentCategoryId}class="selected"{/if}>{$node.name|escape:'htmlall':'UTF-8'}

Link to comment
Share on other sites

×
×
  • Create New...