Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommyshellberg/bec88c936f387dfd3396ae92dde3e1dc to your computer and use it in GitHub Desktop.
Save tommyshellberg/bec88c936f387dfd3396ae92dde3e1dc to your computer and use it in GitHub Desktop.
WooCommerce - Always send Purchase Note to both Customer and Admin
add_filter ('woocommerce_email_order_items_args', 'send_purchase_note_to_everyone');
function send_purchase_note_to_everyone( $args ) {
$args['show_purchase_note'] = true;
return $args;
}
@makeonlineshop
Copy link

hello, can I know what is this code doing exactly ?
When adding a note or order page, I want the note sent to customer and admin.
Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment