Display customer order comments
-
Hi everybody,
I need to display customer order comments and i don’t understand why it isn’t the same way to others customer details (like company name / phone / mail …)
I’m using this to display customer details :
$customer_id = get_current_user_id(); $first_name = get_user_meta( $customer_id, 'billing_first_name', true); $last_name = get_user_meta( $customer_id, 'billing_last_name', true); $phone = get_user_meta( $customer_id, 'billing_phone', true );Logically i tried this :
$info = get_user_meta( $customer_id, 'order_comments', true );But it didn’t work… if someone has an idea !
Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Display customer order comments’ is closed to new replies.