Home › Forums › Ticket Products › Event Tickets Plus › Edit e-mails
- This topic has 5 replies, 2 voices, and was last updated 7 years, 9 months ago by
Miki.
-
AuthorPosts
-
June 15, 2018 at 1:21 am #1554074
Miki
ParticipantHi,
CHANGE TEXT
I wanted to change “you’ll receive your tickets in another mail” from the email that the customer receives after purchase. I want it to say something like “come to our store to pick up your tickets”. How do I do that?DISABLE EMAIL TICKET
Since we want our customers to come to the store and pick up their ticket, we do not want them to receive an email with the ticket. Is this the code I need to add?add_filter( ‘wootickets-tickets-email-enabled’, ‘__return_false’ );
ORDER EMAIL
We also sell products. So if a customer buys a ticket and a product. Will they receive the ticket confirmation email or the product confirmation email? or both? or is it the same?Best regards
Miki
June 15, 2018 at 10:09 pm #1554673Jennifer
KeymasterHi Miki,
Thanks for reaching out!
When a customer orders any product through WooCommerce, they will receive an order confirmation email. If one of the products that they order is a ticket, then they will also receive a separate email with their ticket, which comes from the Event Tickets plugin.
To disable that ticket email, you can add that code to the functions.php file of your child theme. To change the message in the WooCommerce order confirmation email, you can also add the following:
/*
* The Events Calendar WooCommerce Tickets - Change You'll receive your tickets in another email.
* @ Version 4.3.1
*/
add_filter('wootickets_email_message', 'woo_tickets_filter_completed_order', 10 );
function woo_tickets_filter_completed_order($text) {
$text = "Your custom text";
return $text;
}We are limited in the amount of support that we can provide for customizations, but if you get stuck or have any questions, please let me know – I’ll be happy to try to point you in the right direction!
Thanks,
Jennifer
June 19, 2018 at 2:19 am #1555929Miki
ParticipantHi
to functions.php in my child theme, I added:
add_filter( ‘wootickets-tickets-email-enabled’, ‘__return_false’ );
But I still get the ticket mail, though without content.
June 20, 2018 at 9:25 am #1557171Jennifer
KeymasterHello,
Can you give this a try instead?
add_filter( 'tribe_tickets_plus_email_enabled', '__return_false' );Let me know if this works!
June 22, 2018 at 5:31 am #1559099Miki
ParticipantThat seems to work, thanks 🙂
June 23, 2018 at 9:26 pm #1560179Jennifer
KeymasterNo problem! Just let me know if there is anything else that I can help with 🙂
July 15, 2018 at 9:35 am #1575699Support Droid
KeymasterHey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.
Thanks so much!
The Events Calendar Support Team -
AuthorPosts
- The topic ‘Edit e-mails’ is closed to new replies.
