Order notes/attributes in packing slip

So I’ve added some attributes against an order and its displayed like this in the order admin

Is there anyway to get this data into the packing slips at all?

You need to customize the template to pull those attributes in:

  • Go to Settings > Shipping and delivery in your Shopify admin.
  • Scroll down to the Packing slips section and click the template name.
  • Locate where you want the custom data to appear and insert Liquid code similar to:
{% if order.note_attributes != blank %}
  <h3>Additional Details</h3>
  <ul>
    {% for attribute in order.note_attributes %}
      <li><strong>{{ attribute.name }}:</strong> {{ attribute.value }}</li>
    {% endfor %}
  </ul>
{% endif %}

or, if your data is in a single attribute called future_delivery:

{% assign futureDelivery = order.note_attributes | where: "name", "future_delivery" | first %}
{% if futureDelivery %}
  <p><strong>Future Delivery Date:</strong> {{ futureDelivery.value }}</p>
{% endif %}

Please could you share the docs where it shows that order.note_attributes is available to use in the packing slips template?

Thanks!