【问题标题】:convertPrice in smarty didn't worksmarty 中的 convertPrice 不起作用
【发布时间】:2014-12-15 11:24:52
【问题描述】:
我想将价格从欧元转换为克朗。
在tpl,我试过这个
{convertPrice price=$product.prijs currency=$currencies.0.id_currency to_currency=false}
但价格不变,始终显示 $product.prijs 的内容(欧元价格)
请提供任何帮助。
PS:内容是用ajax动态显示的。
【问题讨论】:
标签:
smarty
prestashop-1.6
【解决方案1】:
尝试将displayPrice 与convertAndFormatPrice 修饰符结合使用,有点像这样:
{displayPrice price=$product.prijs|convertAndFormatPrice:$currencies.0.id_currency currency=$currencies.0.id_currency}
第一个货币参数用于convertAndFormatPrice 函数,第二个用于displayPrice。