在我的shopify主题中的原始标签中我有一个问题,我可以输出产品的价格(即1400 00)但不能格式化显示的价格(1400英镑)。我用来提取格式化价格的标签是$ {price},但是当我尝试$ {price | money_with_currency}没有显示。
有没有人知道如何在没有尾随小数的情况下获得货币展示?
答案 0 :(得分:0)
尝试money
或money_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
。