在Shopify原始标签中显示格式正确的产品价格

时间:2016-02-11 16:04:41

标签: php shopify

在我的shopify主题中的原始标签中我有一个问题,我可以输出产品的价格(即1400 00)但不能格式化显示的价格(1400英镑)。我用来提取格式化价格的标签是$ {price},但是当我尝试$ {price | money_with_currency}没有显示。

有没有人知道如何在没有尾随小数的情况下获得货币展示?

1 个答案:

答案 0 :(得分:0)

尝试moneymoney_without_trailing_zeros过滤器。

E.g。

{{ price | money }}
{{ price | money_without_trailing_zeros }}

请参阅money filters documentation here

如果您想使用money_with_currency,但不想使用尾随小数,则可以转到设置>一般>货币>更改格式并将${{amount}} AUD替换为${{amount_no_decimals}} AUD