Created
June 21, 2019 08:06
-
-
Save tobymarsden/63856d08ec7a43c13742b73ff09c06b8 to your computer and use it in GitHub Desktop.
line item properties in cart
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
{% for p in item.properties %} | |
{% assign first_character_in_key = p.first | truncate: 1, '' %} | |
{% unless p.last == blank or first_character_in_key == '_' %} | |
{{ p.first }}: | |
{{ p.last }} | |
<br> | |
{% endunless %} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment