How to remove or hide the new order header from the admin email?
my question:
I want to print my order, but the email is longer than one page. If I could remove the header, my order would only fit on one page.
Try using
add_filter('woocommerce_email_heading_new_order','my_email_heading_customisation_function', 1, 2); function my_email_heading_customisation_function($heading){ $heading=''; return $heading; }
Try using