Skip to content

Instantly share code, notes, and snippets.

@tiagofrancafernandes
Last active December 5, 2023 18:49
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 tiagofrancafernandes/620a2af85e44d2c726d28a4e45b9a60f to your computer and use it in GitHub Desktop.
Save tiagofrancafernandes/620a2af85e44d2c726d28a4e45b9a60f to your computer and use it in GitHub Desktop.
dev-Shopify snippets

Passing value to var and using in for

<ul>
    {% assign numberOfItems = 12 %}
    {% for i in (1..numberOfItems) %}
    <li><strong>{{ i }}x de</strong> {{ selected_variant.price | times: juros | divided_by: i | money }}</li>
    {% endfor %}
</ul>

Passing value directely in for

<ul>
    {% for i in (1..15) %}
    <li><strong>{{ i }}x de</strong> {{ selected_variant.price | times: juros | divided_by: i | money }}</li>
    {% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment