Skip to content

Instantly share code, notes, and snippets.

View frankug's full-sized avatar

Frank frankug

View GitHub Profile
@vanbo
vanbo / wc-add-order-notes-to-admin-emails
Last active November 14, 2022 13:02
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