Add a digital catalog product with auto-applied order promotion
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.removeAll();
TwoCoInlineCart.products.add({
code: "STD_SUB",
quantity: 3
});
TwoCoInlineCart.cart.checkout();
});Demo
PreviousSet the shipping details in the InLine CheckoutNextSet the item external reference in the InLine Cart
Last updated
Was this helpful?