Jump to content

How to remove "more"


Recommended Posts

  • 2 weeks later...

I have the same issue- where to remove the "MORE" link?

 

You can see it HERE

SOLVED

 

Open the category template in themes > your theme, and around line 60 you see this:

  {if $category->description}
   <div class="cat_desc">
 <p>{$category->description}</p>
 <a href="#" class="lnk_more">{l s='More'}</a>
   </div>

Replace it with THIS:

  {if $category->description}
   <div class="cat_desc">
 <p>{$category->description}</p>
 <!-- <a href="#" class="lnk_more">{l s='More'}</a> -->
   </div>

Link to comment
Share on other sites

  • 4 years later...
×
×
  • Create New...