Omnibus Directive: Example snippet to change the discount rules omnibus date format

add_filter('wdr_omnibus_directive_message_date_format', function ($date_format, $lowest_price_date, $min_price) {
    return get_date_from_gmt($lowest_price_date,'F j, Y');  //You can change the date format here
}, 10, 3);