Add a catalog product to 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({ // Adding the desired product in the cart
code: "74B8E17CC0", // Product code from 2Checkout cPanel account
quantity: 3 // Quantity of the given product
});
TwoCoInlineCart.cart.checkout();
});Demo
PreviousPlace upgrade orders with InLine CartNextAssign values for the product additional custom fields
Last updated
Was this helpful?