Created
June 6, 2018 14:05
-
-
Save tommyshellberg/bec88c936f387dfd3396ae92dde3e1dc to your computer and use it in GitHub Desktop.
WooCommerce - Always send Purchase Note to both Customer and Admin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.