Your cart is currently empty.

Please browse our products to make your selection.

To top $(document).ready(function() { if (window.location.href.indexOf("/checkout") != -1){ var promo_codes = ['Promo1','Promo2']; //REPLACE WITH YOUR PROMO CODES $.each(promo_codes, function(index, value) { autoAddPromo(value); }); } }); function autoAddPromo(promo_code) { $.post("/ajax/applypromo/true", { promo: promo_code, promo_widget: 1, is_cart: 1}) .done(function(data) { if (data.status == "success") { console.log('promo added'); } }); }