Add a digital catalog product with regular auto-applied promotion and manually applied order promo
Overview
Use the order promotions object to add digital catalog products with regular auto-applied promotion and manually applied order promotion (for MoR 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.
Manually add the GENIUS25 discount coupon.
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",
quantity: 3
});
TwoCoInlineCart.cart.checkout();
});Demo
After adding a digital catalog product with regular auto-applied promotion and manually applied order promotion using the above method, your cart should look like this:
PreviousAssign values for the product additional custom fields
NextSet the pricing option for catalog products
Last updated
Was this helpful?