Cart strikeout compatible with Elementor plugin

Cart strikeout compatible with Elementor plugin

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