Articles on: FAQ

How to show options on packaging slip and in order confirmation email?

Show options on packaging slip



Go to Shopify Settings > Shipping & delivery and at the bottom of the page in the "Packaging slip" section click the "Edit template" button
In the template paste the following code below the section on the screenshot:

{% for property in line_item.properties %}
              <span class="line-item-description-line">
                {% unless property[0] == '_extra_item_ids' %}
                  {{ property[0] }}: {{ property[1] }}
                {% endunless %}
              </span>
            {% endfor %}




Save the changes

If you struggle adding the code yourself, feel free to contact our customer support, we're happy to do it for you!

Show options in order confirmation email



Go to Shopify Settings > Notifcations > Customer notifications
Click the "Order confirmation" section then on the top right click "Edit code"
In the template paste the following code below the section on the screenshot:

{% for property in line.properties %}
  {% assign first_char = property.first | slice: 0 %}
  {% unless first_char == '_' %}
    <div class="order-list__item-property">
      {{ property.first }}: {{ property.last }}<br/>
    </div>
  {% endunless %}
{% endfor %}




If you struggle adding the code yourself, feel free to contact our customer support, we're happy to do it for you!

Updated on: 01/04/2024

Was this article helpful?

Share your feedback

Cancel

Thank you!