Recalculate total before cart Recalculate total before cart

Recalculate total before cart

add_action('woocommerce_before_cart_totals', function (){
    if (!WC()->cart->is_empty()){
		WC()->cart->calculate_totals();
    }
});