Add a digital catalog product with auto-applied order promotion
Overview
Use the order promotions object to add a digital catalog product with auto-applied order promotion (for PSP business model).
Use case
- Add an HTML link or button to your page like the one below.
- Create a JavaScript click handler to execute the InLine Client desired methods.
- Use the TwoCoInlineCart.products.add({code, quantity, options}) method to prepare your catalog product.
- Use the TwoCoInlineCart.cart.checkout() method to show the cart on your page.
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
After adding a digital catalog product with auto-applied order promotion using the above method, your cart should look like this: