Woocommerce: Remove variant options from admin new order email

I would like to ask for some help / advice. Currently, we use the admin new order email as a picking list that gets printed off, but we now have an average of 3 variations per product and the printed name is now getting rather long, as per the format below.

what I would like to ask help for is to determine which hooks control the naming so I can remove all the variant elements, (leaving standard name and sku) and to then apply it to the admin email only.

My initial thought is to do something like the below, but I cannot see how i can determine if it is an admin email or not as I don’t have access to $email..

Any help is appreciated.


function variation_title_not_include_attributes( $boolean ){ 

if (  is_email() )  {
$boolean = false; 
return $boolean; 
}
return true;
}
Current Sample output:

Test product (Test SKU)
•   Variant 1: 
Variant 1 Option
•   Variant 2: 
Variant 2 Option
•   Variant 3: 
Variant 3 Option

1 Answer
1

One approach would be to override woocommerce/templates/emails/email-order-items.php (and possibly the version for plain-text emails) with your own version. It has access to $sent_to_admin, so you could replace its call to echo wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) ); with your own.

Leave a Comment