japanknife Posted March 20, 2014 Share Posted March 20, 2014 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 More sharing options...
dioniz Posted March 20, 2014 Share Posted March 20, 2014 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; } 4 Link to comment Share on other sites More sharing options...
japanknife Posted March 28, 2014 Author Share Posted March 28, 2014 Thanks I will do. Link to comment Share on other sites More sharing options...
Stofferdreng Posted March 28, 2014 Share Posted March 28, 2014 @dioniz Is it possible to show the first 2 lines (or xx characters) ? Link to comment Share on other sites More sharing options...
dioniz Posted March 28, 2014 Share Posted March 28, 2014 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. 1 Link to comment Share on other sites More sharing options...
Stofferdreng Posted March 28, 2014 Share Posted March 28, 2014 Thanks - i actually found the solution myself, including adding and changing some min-height values in the .css file to make sure the horizontal alignment looks nice regardless of the number of lines in product names and description. Link to comment Share on other sites More sharing options...
dioniz Posted March 28, 2014 Share Posted March 28, 2014 I'm glad you solve it Link to comment Share on other sites More sharing options...
Ismael Arguedas Posted January 12, 2015 Share Posted January 12, 2015 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; } Hi, Is possible dysplay it only in hovered .product-container? thx Link to comment Share on other sites More sharing options...
Recommended Posts