Remove you saved message from Order total
Remove the "You saved" message from the order total.
// Remove you saved message from Order total
add_action('advanced_woo_discount_rules_after_initialize', function () {
if (class_exists('\Wdr\App\Router')) {
if (has_action('woocommerce_get_formatted_order_total', array(\Wdr\App\Router::$manage_discount, 'displayTotalSavingsInOrderAfterOrderTotal'), 10)) {
remove_action('woocommerce_get_formatted_order_total', array(\Wdr\App\Router::$manage_discount, 'displayTotalSavingsInOrderAfterOrderTotal'), 10);
}
}
});