Articles on: Frequently Asked Questions

How to show options in Order Confirmation email?

Step 1. Open the Order Confirmation template: Settings > Notifications > Order confirmation




Step 2. Select Edit code




Step 3. Add the following code between the selling plan name and refunded tag


<!-- start custom for tepo -->
         {%- for prop in line.properties -%}
            {% assign property_first_char = prop.first | slice: 0 %}
            {% unless property_first_char == '_' or prop.last == blank %}
              <div>
                <span>
                  {{ prop.first }}: 
                </span>
                <span>
                  {% if prop.last contains '/uploads/' %}
                    <a href="{{ prop.last }}" target="_blank">
                      {{ prop.last | split: '/' | last }}
                    </a>
                  {% else %}
                    {{ prop.last }}
                  {% endif %}
                </span>
              </div>
            {% endunless %}
          {%- endfor -%}
            <!-- end custom for tepo -->


Your screen should look like the below:



Step 4: Save the template


Hopefully this has helped you. Things change all the time, so if you run into issues please don't hesitate to share them with us the in-app live chat. We're happy to lend a hand 🤩

Updated on: 02/04/2025

Updated on: 02/04/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!