Remove you saved text in invoice
Remove the "You saved" text from invoices generated by the system.
add_action('advanced_woo_discount_rules_after_initialize', function (){
if(class_exists('\Wdr\App\Router')){
remove_filter('woocommerce_order_formatted_line_subtotal', array(\Wdr\App\Router::$manage_discount, 'orderSubTotalDiscountDetails'),1000);
remove_action('woocommerce_get_formatted_order_total', array(\Wdr\App\Router::$manage_discount, 'displayTotalSavingsInOrderAfterOrderTotal'));
}
}, 10);