Add product to cart via script
Looking for a way to add an item to the cart using a script. In Shopify I can do this using a URL or a script Ike shown below.
or
script
- $.post('/cart/add.js', { //Post the below in the cart
quantity: 1, //Add the quantity of products
id:31947959435111 //product variant id
},function(){
window.location.reload();
});