Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Created April 30, 2015 15:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesseeproductions/ec0756a728a65dec0266 to your computer and use it in GitHub Desktop.
Save jesseeproductions/ec0756a728a65dec0266 to your computer and use it in GitHub Desktop.
WooCommerce Tickets change "You’ll receive your tickets in another email." text
/*
* 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