Jump to content

[SOLVED] product list - display image in short description


Recommended Posts

Good morning

 

If memory serves correctly I believe you need to go to product-list.tpl and remove strip_tags

 

Paul

 

Thanks Paul, that did the trick.

 

For future reference,

BEFORE:

				<p class="product_desc"><a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.description_short|truncate:360:'...'|strip_tags:'UTF-8'|escape:'htmlall':'UTF-8'}">{$product.description_short|truncate:360:'...'|strip_tags:'UTF-8'}</a></p>

AFTER:

				<p class="product_desc"><a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.description_short|truncate:360:'...'|strip_tags:'UTF-8'|escape:'htmlall':'UTF-8'}">{$product.description_short|truncate:360:'...'}</a></p>


just removed the second |strip_tags:'UTF-8' 

Edited by SkyHiRider (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...