Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bizzthemes/f09966581b1b99623f6d to your computer and use it in GitHub Desktop.
Save bizzthemes/f09966581b1b99623f6d to your computer and use it in GitHub Desktop.
Disable customer email notification
<?php
//* Do NOT include the opening php tag, only copy the code below
add_action( 'bizzthemes_send_notification_shortcut', 'disable_customer_notification', 10, 3 );
function disable_customer_notification( $status, $customer_email, $subject, $body, $headers ) {
// Stop customer email notifications
if ( $status == 'customer' ) {
return '';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment