Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Last active June 1, 2019 17:50
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mikejolley/2263203 to your computer and use it in GitHub Desktop.
Save mikejolley/2263203 to your computer and use it in GitHub Desktop.
WooCommerce - Add custom field (in an order) to the order emails
/**
* Add the field to order emails
**/
add_filter('woocommerce_email_order_meta_keys', 'my_woocommerce_email_order_meta_keys');
function my_woocommerce_email_order_meta_keys( $keys ) {
$keys['How did you hear about us?'] = 'hear_about_us';
return $keys;
}
@o-nkar
Copy link

o-nkar commented Jul 4, 2018

@dimbert82
insert the code in your active theme or child theme functions.php

code like this:

add_filter( 'woocommerce_email_order_meta_fields', 'custom_order_mail_fields_callback', 10, 3 );
function custom_order_mail_fields_callback( $fields, $sent_to_admin, $order ) {    
        $fields['yourdata'] = array(
            'label' => __( 'yourdata to display' ),
            'value' => ' yourdata value',
        );
    }
    return $fields;
}

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