我想将价格从欧元转换为korona。 在tpl中,我尝试了这个
{convertPrice price=$product.prijs currency=$currencies.0.id_currency to_currency=false}
但价格没有变化,总是显示$ product.prijs的内容(价格以欧元计) 请帮忙。 PS:内容用ajax动态显示。
答案 0 :(得分:0)
尝试将displayPrice
与convertAndFormatPrice
修饰符结合使用,如下所示:
{displayPrice price=$product.prijs|convertAndFormatPrice:$currencies.0.id_currency currency=$currencies.0.id_currency}
第一个货币参数用于convertAndFormatPrice
功能,第二个用于displayPrice
。