Woocommerce remove new order header from admin email
P粉442576165
P粉442576165 2024-01-29 08:59:16
0
1
353

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.

P粉442576165
P粉442576165

reply all(1)
P粉969253139

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;
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!