Recalculate total before cart

Recalculate total before cart.

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