Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Created April 18, 2019 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshfeck/8104f3da093fd2c34b4d30f4e74fc82a to your computer and use it in GitHub Desktop.
Save joshfeck/8104f3da093fd2c34b4d30f4e74fc82a to your computer and use it in GitHub Desktop.
WordPres mu-plugin to deactivate all Event Espresso 3 email sending functions
<?php
/*
Plugin Name: mu-plugin (must use) that deactivates all emails for Event Espresso 3
*/
if (!function_exists('event_espresso_send_email')) {
function event_espresso_send_email($params) {
return;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment