Skip to content

Instantly share code, notes, and snippets.

@aatronco
Created July 20, 2017 16:12
Show Gist options
  • Save aatronco/1507891bb2b14762f0cba72aba4db93f to your computer and use it in GitHub Desktop.
Save aatronco/1507891bb2b14762f0cba72aba4db93f to your computer and use it in GitHub Desktop.
Gets variant price searching for a variant value name
{% for variant in product.variants %}
{% for value in variant.values %}
{% if value.name == "Por Mayor" %}
{% assign precio_por_mayor = variant.price %}
{%endif%}
{%endfor%}
{%endfor%}
{{precio_por_mayor | price}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment