Hey there, Rich! Thanks for getting in touch and welcome to the forums. š
Good question. Both emails are actually required–the invoice is required by WooCommerce and the ticket is required by WooCommerce Tickets.
You can add this to your theme’sĀ functions.php file to disable the ticket email:
[php]
remove_all_actions(‘wootickets-send-tickets-email’);
[/php]
You will also want to add this as well to remove the message in the invoice that says the ticket will be sent in another email:
[php]
remove_action(‘woocommerce_email_after_order_table’,Ā array(TribeWooTickets::get_instance(), ‘add_tickets_msg_to_email’), 10, 2 );
[/php]
From there, you can refer to the WooCommerce documentation for customizing the invoice email further.
Does this help? Please let me know. š
Cheers!
Geoff