- Web templates
- E-commerce Templates
- CMS & Blog Templates
- Facebook Templates
- Website Builders
PrestaShop 1.6.x. How to remove “More” button on category page and display full description
October 1, 2015
This tutorial will show you how to display a full category description instead of a short one and remove More button on Prestashop category pages.
PrestaShop 1.6.x. How to remove “More” button on category page and display full description
-
Log into your hosting cPanel and open File manager:
-
Open themes/themeXXXX folder, where XXXX is your actual theme number.
-
Find category.tpl file and click Edit icon to edit it:
-
You should find the following code:
{if Tools::strlen($category->description) > 350}
{$description_short}{$category->description}{l s='More'} -
You should completely remove these lines from the code:
{$description_short}{l s='More'} -
Then you should edit this line:
class="unvisible">
and replace it with this one:
class="visible">
-
Please note that there are 2 instances of the same code in the file. You should edit both instances.
-
After you edit the file, click Save button to save changes:
-
Refresh your category page to see that More button is removed and full description is displayed instead of short one.
Feel free to check the detailed video tutorial below:
PrestaShop 1.6.x. How to remove “More” button on category page and display full description