<script>
function initializeAfterpay() {
const widget = document.getElementById('afterpay-messaging-widget');
if (widget && typeof Afterpay !== 'undefined') {
Afterpay.createPlacements({
targetSelector: "#afterpay-messaging-widget",
// 金额要大于等于400且币种要是USD才生效,否则就是正常的分四期
attributes: {
locale: "en_US",
currency: "{{shop.currency}}",
amount: "{{ product.selected_or_first_available_variant.price | money_without_currency }}",
aprLoansAvailable: "true",
}
});
} else {
console.error('Afterpay script not loaded or target element not found.');
}
}
</script>