WooCommerce update_checkout won't update shipping methods – Jquery ajax
On my WooCommerce site I use this function to add a 4€ fee if you select cash on delivery as payment method: add_action('woocommerce_cart_calculate_fees', 'increase_cod_cost'); function increase_cod_cost() { if(WC()->session->chosen_payment_method=='cod') WC()->cart->add_fee(__('COD Fee'), 4); } I also use this function to immediately update…