Continuativo

1 2 3 4 21 22 23
jQuery(function ($) { if (!$('body').hasClass('woocommerce-checkout')) return; function forceCountryIT() { let changed = false; const billing = $('#billing_country'); const shipping = $('#shipping_country'); if (billing.length && billing.val() !== 'IT') { billing.val('IT').trigger('change'); changed = true; } if (shipping.length && shipping.val() !== 'IT') { shipping.val('IT').trigger('change'); changed = true; } if (changed) { $('body').trigger('update_checkout'); } } // prima esecuzione forceCountryIT(); // riesegue quando CheckoutWC aggiorna il DOM $(document.body).on('updated_checkout cfw_updated_checkout', function () { forceCountryIT(); }); });