Jump to content

Prestashop 1.6 - short description


Recommended Posts

Thanks Prestashop Team, your work help me in my business.

 

 

 

About the Prestashop 1.6, is it possible to show the short description in the product list ? or home featured products?

 

In my shop is a little bit important the shop description, because some photos are very similar and the short description helps the customer to choose the article.

 

Thanks again

 

 

Link to comment
Share on other sites

For description open product_list.css and change this:

ul.product_list.grid > li .product-container .product-desc {
    display: none;
}

to this:

ul.product_list.grid > li .product-container .product-desc {
    display: block;
}
  • Like 4
Link to comment
Share on other sites

In product-list.tpl find this code

<p class="product-desc" itemprop="description">
	{$product.description_short|strip_tags:'UTF-8'|truncate:150:'...'}
</p>

and change 150 to whatever number of characters you want.

  • Like 1
Link to comment
Share on other sites

  • 9 months later...
×
×
  • Create New...