is it possible to add 2 items to a cart at the same time? like a free product that is associated with a specifically selected product?
I currently add to the cart this way
$.get('/?post_type=product&add-to-cart=' + productId, function() {
// stuff here..
});
If its not possible do you know what hooks i might need to hook into to change it?
Thanks in advance..