Shopify BuyButton moneyFormat не работает
У меня возникают проблемы с изменением символа валюты в моей корзине Shopify с помощью библиотеки BuyButton JS на внешнем веб-сайте.
В этом посте я увидел, что кому-то удалось решить эту проблему с помощью опции moneyFormat. Но когда я это делаю, ничего не меняется: /
Вот мой код:
ui.createComponent('cart', {
toggles: [{
node: document.getElementById('cart_icon'),
}],
options: {
toggle: {
sticky: false,
iframe: false,
},
cart: {
popup: true,
iframe: true,
contents: {
note: false
},
text: {
currency: 'GBP',
}
}
}
})
if (!product_id) {
return
}
ui.createComponent('product', {
id: product_id,
node: document.getElementById('product_holder'),
moneyFormat: '£{{amount}}',
currency: 'GBP',
iframe: true,
options: {
moneyFormat:'£{{amount}}',
product: {
layout: 'hortontal',
contents: {
description: false
},
styles: {
button: {
'background-color': '#EB64A0',
':hover': {
'background-color': '#CF2A75'
}
}
},
}
}
})
Любая помощь приветствуется, спасибо!