Prestashop 和 Smarty
Posted
技术标签:
【中文标题】Prestashop 和 Smarty【英文标题】:Prestashop and Smarty 【发布时间】:2017-06-11 20:04:45 【问题描述】:我在 Prestashop 上使用 smarty 模板时遇到问题。
我想用 html 标签回显产品描述(所见即所得),但它给了我带有条纹 html 标签的字符串或什么都没有。
$product.description_short|unescape|strip_tags:false
unescape
和 strip_tags:false
不会改变任何东西。字符串仍然是条纹的。仅使用 $product.description_short
不显示任何内容。
我尝试使用php /php
,但我得到的一切都是 500 错误。
这是上市.tpl
单个产品视图描述与该代码 $product->description_short
配合良好
【问题讨论】:
您使用的是哪个版本的 prestashop? 【参考方案1】:如果我明白你想要什么,你有没有试过这个:
$product.description_short|escape:'htmlall':'UTF-8'
【讨论】:
以上是关于Prestashop 和 Smarty的主要内容,如果未能解决你的问题,请参考以下文章