INVOICE: SHIPPING TO STORE

Hello, I have consulted in the shopify help chat for an HTML code to put on the invoice, to be able to indicate whether the delivery is home delivery or delivery to the store. In the event that it is shipped to a store, I need you to indicate which store the shipment is to.

Shopify has provided me with this code: {% if shipping_address %}
  <p>Shipping to: {{ shipping_address.name }}</p>
  <p>Address: {{ shipping_address.address1 }}</p>
{% else %}
  <p>Shipping to store: {{ pickup_location.name }}</p>
{% endif %} But the problem is that only "shipping to store:" appears and it does not show which store the shipment is from. Could someone tell me how to solve it? Thank you so much!!!

Thank you! Our website is https://jvzshop.com/

Why do you need that for?

I’ve checked our IG but I don’t have any messages. You can send us the code to the emailtrabajoconnosotros@jvzshop.com

sorry, to the email trabajaconnosotros@jvzshop.com

Hi @JVZSHOP ,

you can try the following code

{% if shipping_address %}
  

Shipping to: {{ shipping_address.name }}

  

Address: {{ shipping_address.address1 }}

{% else %}
  

Shipping to store: {{ location.name }}

{% endif %}

Hi! Namphan

I have tried it but it have the same problem… only “shipping to store:” appears and it does not show which store the shipment is from… :disappointed_face: