Hi, I would like to stop sending the ticket email after the order is completed. The snippet I was using is not longer working.
Could you please send me the updated one?
/*
* The Events Calendar WooCommerce Tickets – Prevent Ticket Email from being sent.
* @ Version 3.10
*/
add_action( ‘init’, ‘wootickets_stop_sending_email’ );
function wootickets_stop_sending_email() {
if (class_exists(‘Tribe__Events__Tickets__Woo__Main’)) {
$woo = Tribe__Events__Tickets__Woo__Main::get_instance();
remove_filter( ‘woocommerce_email_classes’, array( $woo, ‘add_email_class_to_woocommerce’ ) );
add_action( ‘woocommerce_email_after_order_table’, array( $woo, ‘add_tickets_msg_to_email’ ) );
}
}
/*
* The Events Calendar WooCommerce Tickets – Hide You’ll receive your tickets in another email.
* @ Version 3.10
*/
add_filter(‘wootickets_email_message’, ‘woo_tickets_filter_completed_order’, 10 );
function woo_tickets_filter_completed_order($text) {
$text = “”;
return $text;
}
Many thanks,
Emiliano