Skip to content

Instantly share code, notes, and snippets.

@swoboda
Created August 22, 2017 14:41
Show Gist options
  • Save swoboda/fdb19e82a550ed81c69d5876335065c5 to your computer and use it in GitHub Desktop.
Save swoboda/fdb19e82a550ed81c69d5876335065c5 to your computer and use it in GitHub Desktop.
vat_number_emails_en.php
<?php
// Do NOT include the opening php tag shown above. Copy the code shown below.
add_filter( 'woocommerce_email_order_meta_keys', 'wpdesk_vat_number_display_email' );
/**
* VAT Number in emails
*/
function wpdesk_vat_number_display_email( $keys ) {
$keys['VAT Number'] = '_vat_number';
return $keys;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment