Skip to content

Instantly share code, notes, and snippets.

@jupegarnica
Forked from mikejolley/gist:2263203
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save jupegarnica/a819a097224c85eb5aec to your computer and use it in GitHub Desktop.

Select an option

Save jupegarnica/a819a097224c85eb5aec to your computer and use it in GitHub Desktop.
/**
* 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;
}
@jupegarnica
Copy link
Author

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