Created
March 10, 2022 15:38
-
-
Save cupnoodle/9f5caa1b91e4a35d1e6a17bad6fae341 to your computer and use it in GitHub Desktop.
Order confirmation email template with line item properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% unless line.properties == empty %} | |
<ul style="list-style-type: none; padding: 0;"> | |
{% for property in line.properties %} | |
<li><span class="order-list__item-variant">{{ property.first }}: {{ property.last }}</span></li> | |
{% endfor %} | |
</ul> | |
{% endunless %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment