I want to customize the email received by the client when he/she makes a ticket purchase. This includes changing some words and removing the QR code. I’ve read this thread in relation to my customization requirements: https://theeventscalendar.com/support/forums/topic/getting-started/#post-1172675.
Instead of doing what that forum says, I created a copy of email.php and I’ll be placing it on theme-name/tickets/email.php. Is it okay to remove this line instead:
<?php do_action( 'tribe_tickets_ticket_email_ticket_bottom', $ticket ); ?>
I also added this line:
<table class="whiteSpace" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td valign="top" align="left" width="100%" style="background:#ffffff; padding: 20px !important; margin:0 !important;">
<div style="margin:0;">
Please remember to print out this registration and bring it along on the date you have chosen to collect your Registration pack.
</div>
</td>
</tr>
</table>
Is this correct instead of doing what the old thread says?