How to show user meta field of the user who placed the order in the Woocommerce Order admin page?
add_action( 'woocommerce_admin_order_data_after_billing_address', 'my_custom_checkout_field_display_admin_order_meta', 10, 1 );
function my_custom_checkout_field_display_admin_order_meta($order){
echo '<strong>Store number</strong>' . get_user_meta( $user_id, 'wpcf-store-number', true );
}
This is what I have so far. The user meta field is wpcf-store-number.