Skip to content

Instantly share code, notes, and snippets.

@swoboda
Created January 21, 2017 12:36
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 swoboda/c44d61c20ddc986dfb6863ee5c7c28c6 to your computer and use it in GitHub Desktop.
Save swoboda/c44d61c20ddc986dfb6863ee5c7c28c6 to your computer and use it in GitHub Desktop.
vat_number_emails
<?php
add_filter( 'woocommerce_email_order_meta_keys', 'wpdesk_vat_number_display_email' );
/**
* Pole NIP w mailu
*/
function wpdesk_vat_number_display_email( $keys ) {
$keys['NIP'] = '_vat_number';
return $keys;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment