Guid Posted July 3, 2014 Share Posted July 3, 2014 (edited) Hi prestashop forum! Some help please... On my products pages, i have "more info" content text (description), i would like to hidde it there not erase it, because i'm using this description content text on my grid list products. (presta 1.6, theme default) Thanks for helping! Edited July 3, 2014 by Guid (see edit history) Link to comment Share on other sites More sharing options...
PSfever.com Posted July 3, 2014 Share Posted July 3, 2014 Hi, simply comment out a section of your code in themes/default-bootstrap/product.tpl file Change this piece of code from this: {if $product->description} <!-- More info --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3>{/if} {if isset($product) && $product->description} <!-- full description --> <div class="rte">{$product->description}</div> </section> <!--end More info --> {/if} to this: {* {if $product->description} <!-- More info --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3>{/if} {if isset($product) && $product->description} <!-- full description --> <div class="rte">{$product->description}</div> </section> <!--end More info --> {/if} *} 1 Link to comment Share on other sites More sharing options...
Guid Posted July 3, 2014 Author Share Posted July 3, 2014 Thanks a lot PSfever for your help and your quick reply! You SOLVED it! Link to comment Share on other sites More sharing options...
Recommended Posts