Shopify Buy Button via JS — Cart shows wrong currency(通过JS购物按钮购物-购物车显示错误的货币)
问题描述
我已经通过Buy Button JS Library集成了Shopify。
一切正常,但是购物车显示了错误的货币(它显示的是美元而不是欧元)。
我已经通过Shopify Admin Dashboard(位于https://domain.myshopify.com/admin
)正确设置了所有内容。商店的主要币种设置为EUR
,as mentioned in the docs可以通过cart.text.currency
参数设置币种。我这么做了,但什么也改变不了。这是错误吗?
到目前为止我的JS代码:
<script src="//sdks.shopifycdn.com/buy-button/1.0.0/buybutton.js"></script>
<script>
var client = ShopifyBuy.buildClient({
domain: 'domain.myshopify.com',
storefrontAccessToken: '2b3xxxxxxxxjh5', // previously apiKey, now deprecated
});
ui = ShopifyBuy.UI.init(client);
ui.createComponent('product', {
id: 23xxxxxx56,
node: document.getElementById('my-product'),
options: {
"product": {
"iframe": true
},
toggle: {
"iframe": true
},
cart: {
"iframe": true,
"popup": false,
"text": {
"title": 'Warenkorb',
"empty": 'Dein Warenkorb ist leer.',
"button": 'Jetzt bestellen',
"total": 'Gesamt',
"currency": 'EUR',
}
}
});
</script>
但如附件中所示,购物车仍显示$
,而不是€
。
编辑
我认为这是Shopify方面的错误,但我想出了如何克服它的方法。
我已经向createComponent
函数添加了moneyFormat
选项,它覆盖所有声明的货币指示。
shopifyUI.createComponent('product', {
id: 23xxxxxx56,
node: document.getElementById('shopify-button-buy-regular'),
moneyFormat: '€{{amount_no_decimals}}',
options: shopifyOptions
});
推荐答案
您需要将货币格式添加到组件中,如下所示:
ui.createComponent('product', {
id: 23xxxxxx56,
node: document.getElementById('my-product'),
moneyFormat: '%E2%82%AC%7B%7Bamount%7D%7D',
...
以上代码将为您提供欧元(欧元)符号。
这篇关于通过JS购物按钮购物-购物车显示错误的货币的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:通过JS购物按钮购物-购物车显示错误的货币
基础教程推荐
- 动态更新多个选择框 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01