Jump to content

[SOLVED] how to stop to show category description when i place mouse on left menu


Recommended Posts

Go to modules/blockcategories and find following file.

Go to themes/your_theme_directory/modules/blockcategories and find following file.

 

 

Open this file "category-tree-branch.tpl" and find belowcode.

 

<a href="{$node.link|escape:'html':'UTF-8'}"  {if isset($currentCategoryId) && $node.id == $currentCategoryId} class="selected"{/if} 
title="{$node.desc|strip_tags|trim|escape:'html':'UTF-8'}">  {$node.name|escape:'html':'UTF-8'} </a>
 
Replace upper showing code with mentioned below:
 

After replacing clear your cache directory from main directory as well as theme directory.

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

happy coding.

Thanks

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...