Jump to content

More question to ask about my page design


Recommended Posts

I got this problem

at the catolog> 1.info
at the short description and description

I type in

Part code: asdfgh

Materials: silver and gold

Part size: 1.2 x 3.4cm

I expect it to appear in this format in my page but it appear this way

Part code: asdfgh Materials: silver and
gold Part size:1.2 x 3.4cm

How can I make it to be in the format above? which is

Part code:XXXXXXXX

Materials:XXXXXXXX

Part size:XXXXXXXX

Link to comment
Share on other sites

Prestashop automatically strips HTML tags from the product descriptions on the listing pages. To stop Prestashop doing this, change line 10 of product-list.tpl in your theme's directory from:


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



to:


<a href="{$product.link|escape:'htmlall':'UTF-8'}">{$product.description_short|truncate:360:'...'}

Link to comment
Share on other sites

×
×
  • Create New...