Hi,
We don’t have any code snippet readily available for that. But I believe that should be doable with a template override and a bit of tinkering.
You will need to create a template override for this file:
wp-content/plugins/event-tickets/src/views/tickets/email.php
The event id is accessible via:
$ticket['event_id']
and from that you should be able to get the taxonomies for the event.
Afterwards it’s a matter of “if-else” to do whatever you like.
I also wanted to add the link to the event on the ticket that the attendee receives in an email.
The event title is present in the email and that can be clicked.
If you only need the url, then you can get it with this:
<?php echo esc_url( $event_link ); ?>
Hope this helps.
Cheers,
Andras