🔹Orders Layouts

Orders Detail Layout

Within the Orders Detail Layout you will have access to the orders array variable. To display a list of items in the single order, you should add a Liquid loop like this:

{% for order in orders %}
  <!-- {{order.id}} etc. -->
{% endfor %}

Within the loop, you can use properties of the object within the loop iteration as detailed in the table:

Last updated