Completed email, add SKU
-
Hello Mike,
You answered my thread three months ago regarding this issue here https://www.ads-software.com/support/topic/adding-sku-to-order-completed-email
However, I actually never got it to work, even though I have done what was suggested and there are no template overrides. The other person in the thread seems to have solved the issue, but didn’t describe what they did.
Do you have any further suggestions for how to add the SKU? I believe I am receiving the exact same email that the customer is getting, and I see no SKU with the code change.
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 HERE’;
return $recipient;
}Many thanks
- The topic ‘Completed email, add SKU’ is closed to new replies.