Description
jQuery(document).ready(function($) {
$(‘#add-combo-button’).on(‘click’, function() {
const bookIDs = [123, 456, 789]; // WooCommerce product IDs
bookIDs.forEach(function(id) {
$.post(‘/?wc-ajax=add_to_cart’, {
product_id: id,
quantity: 1
});
});
alert(‘Combo added to cart!’);
});
});