Guest User

Untitled

a guest
Jun 4th, 2013
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_action('init', 'remove_wootickets_email_subject');
  2.  
  3. function remove_wootickets_email_subject() {
  4.     $callback = array(TribeWooTickets::get_instance(), 'add_subject_to_email');
  5.     remove_filter('woocommerce_email_subject_customer_completed_order', $callback, 10, 2);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment