Guest User

Untitled

a guest
Jun 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_action( 'woocommerce_email_header', 'change_email_heading', 10, 2 );
  2. function change_email_heading( $email_heading, $email ) {
  3. if( 'new_order' == $email->id ){
  4. echo '<h1>Customer Order Completed</h1>';
  5. }
  6. }
Add Comment
Please, Sign In to add comment