Skip to content

Instantly share code, notes, and snippets.

@swoboda
Last active January 21, 2017 12:30
Show Gist options
  • Save swoboda/d14f20470d93486a604b1ace6f9d54bb to your computer and use it in GitHub Desktop.
Save swoboda/d14f20470d93486a604b1ace6f9d54bb to your computer and use it in GitHub Desktop.
<?php
add_action( 'woocommerce_admin_order_data_after_billing_address', 'wpdesk_vat_number_display_admin_order_meta', 10, 1 );
/**
* Wyświetlenie pola NIP
*/
function wpdesk_vat_number_display_admin_order_meta( $order ) {
echo '<p><strong>' . __( 'NIP', 'woocommerce' ) . ':</strong> ' . get_post_meta( $order->id, '_vat_number', true ) . '</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment