Hello, I have the same issue for SKU in new order mail. But set show_sku to true doesn’t solve this issue for me. Why SKU isn’t shown under WC 2.5.2? It works fine with WC 2.4.x
Please can you help me
Thanks
w4media01 its likely in your theme – check template overrides. System status report.
For. Customer Mail it Works. But in Admin new Order Mail there comes no SKU. Which file could be affected? Thanks and best regards.
No, there are no files of them overwritten. Only file email-order-details and that’s the file I changed like your hint. Do you have another idea?
solved! admin-new-order.php was the problem.
Hi w4media01
I actually couldn’t get it to work, and gave up. However, I really do need to resolve this, so what did you actually do to make it work?
Thank you
I have this in functions.php to send the email to myself
add_filter( ‘woocommerce_email_recipient_customer_completed_order’, ‘your_email_recipient_filter_function’, 10, 2);
function your_email_recipient_filter_function($recipient, $object) {
$recipient = $recipient . ‘EMAIL ADDRESS’;
return $recipient;
}