Skip to content

Instantly share code, notes, and snippets.

@theeventscalendar
Last active November 14, 2015 00:44
Show Gist options
  • Save theeventscalendar/efd17a666727e4269ec1 to your computer and use it in GitHub Desktop.
Save theeventscalendar/efd17a666727e4269ec1 to your computer and use it in GitHub Desktop.
WooCommerce Tickets 3.12.1 // Disable ticket email from sending
/**
Plugin Name: WooCommerce Tickets: Disable Ticket Emails
Description: Turns off ticket emails that are automatically sent from WooCommerce Tickets
Version: 1.0
**/
function wootickets_email_no_no() {
return 'no';
}
add_filter( 'wootickets-tickets-email-enabled', 'wootickets_email_no_no' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment