Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AshlinRejo/6c47cd4c4fac36ab619a8f25523496be to your computer and use it in GitHub Desktop.
Save AshlinRejo/6c47cd4c4fac36ab619a8f25523496be to your computer and use it in GitHub Desktop.
Woo Email: Disable the new account email method
if(!function_exists('woo_email_customizer_enable_new_user_notification_method')){
function woo_email_customizer_enable_new_user_notification_method($allow, $user_id){
return false;
}
}
add_filter('woo_email_customizer_enable_new_user_notification_method', 'woo_email_customizer_enable_new_user_notification_method', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment