Skip to content

Instantly share code, notes, and snippets.

View frankug's full-sized avatar

Frank frankug

View GitHub Profile
@frankug
frankug / wc-add-order-notes-to-admin-emails
Created May 10, 2021 19:12 — forked from vanbo/wc-add-order-notes-to-admin-emails
WooCommerce: Add Order notes to admin emails
add_action( 'woocommerce_email_order_meta', 'woo_add_order_notes_to_email', 10, 3 );
function woo_add_order_notes_to_email( $order, $sent_to_admin = true, $plain_text = false ) {
// You want to send those only to the Admin
if ( ! $sent_to_admin ) {
return;
}
// You can also check which email you are sending, by checking the order status
// Optional, comment it out, if not needed