
02-06-2018, 10:05 AM
|
 |
Junior Member
|
|
Join Date: Feb 2018
Posts: 1
|
|
I need help to display Customer order information in WooCommerce
Can anyone help me i want to add customer information in WooCommerce ?. I have gone through a tutorial Display WooCommerce Customer Order Information and I have followed all the steps defined in the tutorial but still i am not having the customer details from orders as they using some alternate method and i have tried the same. Can you please help me in this code ?
PHP Code:
add_action( 'woocommerce_admin_order_data_after_billing_address', 'blog_anothermethod_display');
function blog_anothermethod_display( $order ){
$order_id =43;
$order_meta = get_post_meta($order_id);
print("<pre>");
print_r($order_meta);
print("</pre>");
}
|