国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

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

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