Zum Inhalt springen
jQuery(function($) {
// 🔥 Wenn Versand geändert wird (Woo Standard Event)
$(document.body).on('change', 'input[name^="shipping_method"]', function() {
console.log('Shipping method changed');
$(document.body).trigger('update_checkout');
});
// 🔥 Wenn Adresse geändert wird
$(document.body).on('change input',
'input[name="billing_postcode"], input[name="shipping_postcode"], select[name="billing_country"], select[name="shipping_country"]',
function() {
console.log('Address changed');
$(document.body).trigger('update_checkout');
}
);
});