Jump to content

[SOLVED] Hidde "more info" description content text on products pages (not erasing it).


Recommended Posts

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 by Guid (see edit history)
Link to comment
Share on other sites

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}
*}
  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...