Created
October 22, 2014 19:16
-
-
Save jesseeproductions/6a9e0674d0f2c28def03 to your computer and use it in GitHub Desktop.
The Events Calendar - WooCommerce Tickets Remove You'll receive your tickets in another email. From Order Emails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The Events Calendar - WooCommerce Tickets Remove You'll receive your tickets in another email. From Order Emails | |
| * | |
| */ | |
| add_filter( 'wootickets_email_message', 'customize_woo_ticket_message', 10, 1 ); | |
| function customize_woo_ticket_message( $tribe_ticket ) { | |
| $tribe_ticket = ''; | |
| return $tribe_ticket; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment