Hello,
I would like to remove the additional tickets email and message as my site doesn’t sell tickets. Is the following code still applicable?
add_filter( 'wootickets_email_message', 'replace_wootickets_order_msg' );
function replace_wootickets_order_msg() {
return '';
}
add_action( ‘init’, ‘stop_wootickets_ticket_email’ );
function stop_wootickets_ticket_email() {
$callback = array( Tribe__Events__Tickets__Woo__Main::get_instance(), ‘add_email_class_to_woocommerce’ );
remove_filter( ‘woocommerce_email_classes’, $callback );
}`
Thank you