Suppress third party plugin cart line item price events

Suppress events from third-party plugins affecting cart line item prices.

// To suppress third party plugin cart line item price strikeout html events
add_action('plugins_loaded', function() {
    if(class_exists('\Wdr\App\Router')){
        remove_all_filters('woocommerce_cart_item_price');
        add_filter('woocommerce_cart_item_price', array(\Wdr\App\Router::$manage_discount, 'getCartPriceHtml'), 1000, 3);
    }
});