Skip to content

Instantly share code, notes, and snippets.

@joe-dempsey
Created April 21, 2017 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joe-dempsey/e0d2e0e422bba076c9df30099a1eb6eb to your computer and use it in GitHub Desktop.
Save joe-dempsey/e0d2e0e422bba076c9df30099a1eb6eb to your computer and use it in GitHub Desktop.
How to count in Liquid for Shopify
{% assign counter = 0 %}
{% for something in somethings %}
{% assign counter = counter | plus: 1 %}
{% endfor %}
{{ counter }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment