WooCommerce Tickets change "You’ll receive your tickets in another email." text
This file contains 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
/* | |
* WooCommerce Tickets change "You’ll receive your tickets in another email." text | |
* @version 3.9 | |
* | |
*/ | |
add_filter('wootickets_email_message', 'woo_tickets_filter_completed_order', 10 ); | |
function woo_tickets_filter_completed_order($text) { | |
$text = "New Text Here"; | |
return $text; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment