Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save acanza/cfa3359842860d371e7f4b79d10c9c6d to your computer and use it in GitHub Desktop.
Save acanza/cfa3359842860d371e7f4b79d10c9c6d to your computer and use it in GitHub Desktop.
/**
* Incluye el campo NIF en el email de notificación del cliente
*/
add_filter('woocommerce_email_order_meta_keys', 'muestra_campo_personalizado_email');
function muestra_campo_personalizado_email( $keys ) {
$keys[] = 'NIF';
return $keys;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment