Show you saved message with high priority

Display a "You Saved" message with high priority.

add_action('plugins_loaded', function (){
    if(class_exists('\Wdr\App\Router')){
		remove_action('woocommerce_cart_totals_order_total_html', array(\Wdr\App\Router::$manage_discount, 'getCartTotalPriceHtml'));
		add_action('woocommerce_cart_totals_order_total_html', array(\Wdr\App\Router::$manage_discount, 'getCartTotalPriceHtml'), 9999, 1);
    }
}, 11);