How do I add the ship to first and last name to order history on customer account page?
I’d like to add it like this to my customer accounts page.
How do I add the ship to first and last name to order history on customer account page?
I’d like to add it like this to my customer accounts page.
Hi!
You can access that through:
{{ order.customer.name }}
or
{{ order.customer.first_name }} {{ order.customer.last_name }}
You can read more about it here: https://shopify.dev/api/liquid/objects/order#order-customer and here: https://shopify.dev/api/liquid/objects/customer#customer-first_name
Hi, @livininjaradise .
Thanks for your message, I was digging into this for you, but it looks like @senabre beat me to it! Please let us know if you have any additional questions, however, the resources shared here should be able to help you out moving forward!