Set the cart currency for InLine Cart
Overview
Use case
Sample request
HTML
<a href="#" class="btn btn-success" id="buy-button">Buy now!</a>JavaScript
window.document.getElementById('buy-button').addEventListener('click', function() {
TwoCoInlineCart.products.add({
code: "74B8E17CC0"
});
TwoCoInlineCart.cart.setCurrency('GBP');
TwoCoInlineCart.cart.checkout();
});Demo
PreviousTest adding a product coupon to the InLine CheckoutNextSet the shipping details in the InLine Checkout
Last updated
Was this helpful?