smarty中的convertPrice不起作用

时间:2014-12-15 11:24:52

标签: smarty prestashop-1.6

我想将价格从欧元转换为korona。 在tpl中,我尝试了这个

{convertPrice price=$product.prijs currency=$currencies.0.id_currency to_currency=false}

但价格没有变化,总是显示$ product.prijs的内容(价格以欧元计) 请帮忙。 PS:内容用ajax动态显示。

1 个答案:

答案 0 :(得分:0)

尝试将displayPriceconvertAndFormatPrice修饰符结合使用,如下所示:

{displayPrice price=$product.prijs|convertAndFormatPrice:$currencies.0.id_currency currency=$currencies.0.id_currency}

第一个货币参数用于convertAndFormatPrice功能,第二个用于displayPrice