Skip to main content
Version: v8

Suppressing the Carrier

info

To disable the whole Notification (all Carriers) it's better to use the notification/should_send filter.

If you want to suppress a specific Carrier you can do it like this:

add_action( 'notification/carrier/pre-send', function( $carrier, $trigger, $notification ) {

if ( $carrier->get_slug() == 'email' ) {
$carrier->suppress();
}

}, 10, 3 );
info

You can target any Carrier or Trigger property in this action to test your conditions.