My Account

Ordina via whatsapp
(function($){ $(function(){ var STEP = '/step-accessori/'; // non fare redirect se sei già nello step, carrello o checkout var p = window.location.pathname; if (p.indexOf(STEP) !== -1) return; if (p.indexOf('/cart') !== -1) return; if (p.indexOf('/carrello') !== -1) return; if (p.indexOf('/checkout') !== -1) return; // evita redirect quando si aggiunge un ACCESSORIO (metti qui gli slug accessori) function isAccessory(el){ var cls = ($(el).closest('li.product').attr('class') || '') + ' ' + ($('body').attr('class') || ''); return ( cls.indexOf('product_cat-accessori') !== -1 || cls.indexOf('product_cat-biglietti') !== -1 || cls.indexOf('product_cat-vasi') !== -1 ); } // segna che vuoi andare allo step quando clicchi add-to-cart $('body').on('click', 'a.add_to_cart_button, button.single_add_to_cart_button', function(){ if (isAccessory(this)) return; window.__goStepAccessori = true; }); // quando l'AJAX add-to-cart è completato, fai redirect $(document.body).on('added_to_cart', function(){ if (window.__goStepAccessori) { window.__goStepAccessori = false; window.location.href = STEP; } }); }); })(jQuery);