Skip to content

Instantly share code, notes, and snippets.

@corsonr
Created July 17, 2014 08:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save corsonr/c2781c9e0cc086c5047f to your computer and use it in GitHub Desktop.
Save corsonr/c2781c9e0cc086c5047f to your computer and use it in GitHub Desktop.
WooCommerce: Add customer username to edit/view order admin page
<?php
// Add WooCommerce customer username to edit/view order admin page
add_action( 'woocommerce_admin_order_data_after_billing_address', 'woo_display_order_username', 10, 1 );
function woo_display_order_username( $order ){
global $post;
$customer_user = get_post_meta( $post->ID, '_customer_user', true );
echo '<p><strong style="display: block;">'.__('Customer Username').':</strong> <a href="user-edit.php?user_id=' . $customer_user . '">' . get_user_meta( $customer_user, 'nickname', true ) . '</a></p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment