Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tobymarsden/63856d08ec7a43c13742b73ff09c06b8 to your computer and use it in GitHub Desktop.
Save tobymarsden/63856d08ec7a43c13742b73ff09c06b8 to your computer and use it in GitHub Desktop.
line item properties in cart
{% 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