Jump to content

How can I allow <br> in product short description?


Recommended Posts

I want to allow line breaks in the product short description. How can I achieve this?

I have tried to change

{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}

to

{$product.description_short|strip_tags:'<br>'|truncate:360:'...'}

but this doesn't work.

 

Does anybody know a solution?

Thanks in advance.

Link to comment
Share on other sites

strip_tags works the same as php strip_tags function.

 

 

strip_tags — Strip HTML and PHP tags from a string

so it removes all html tags from string, also <br>

this is why it's necessary to remove it and in fact, there is no other way to allow <br> - just remove this modifier..

Link to comment
Share on other sites

  • 7 months later...
×
×
  • Create New...