Jump to content

[solved] Prestashop 1.5.4.1 product-list.tpl question


Recommended Posts

Good day. I try to change product-list.tpl to show product full description instead of product name in the product listing. I found an answer on how to do this, but it seem to work in PS 1.4.x only. I tried to insert {$product.description} instead of {$product.name}, but the required field just goes blank.

Any clues?

Link to comment
Share on other sites

{$product.description}

should work by default.

 

make sure that you've got force compilation turned to on

 

moreover, you've got there truncate:

<h3><a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'|truncate:35:'...'}</a></h3>

 

 

try to put the {$product.description} for example, under the <h3> tag

Link to comment
Share on other sites

×
×
  • Create New...