Hello,
I would like to remove the message ‘You’ll receieve your tickets in another email’ as my site doesn’t sell tickets. For WooCommerce tickets I would use the following code:
/*
* 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;
}
I presume that this will not work for Events Tickets Plus. If not how do I make sure customers do not receive this message?
Thanks in advance