Version 1.0
Returns the value of the barcode field of the variant.
{{ response.variant.barcode }}
UZR.ROUGH22-39
Version 1.0
Returns the value of the id field of the variant.
{{ response.variant.id }}
3056
Version 1.0
Returns all of the line image in the variant.
Version 1.0
Returns the value of the inventory_quantity field of the variant.
{{ response.variant.inventory_quantity }}
1
Version 1.0
Returns all of the line price in the variant.
Version 1.0
Returns the value of the selected field of the variant.
{{ response.variant.selected }}
1
Version 1.0
Returns the value of the sku field of the variant.
{% for item in response.orders %}
{% for item2 in item.lines %}
<p> REF: <span>{{item2.sku}}</span></p>
{% endfor %}
{% endfor %}
{{ response.variant.sku }}
UZR.ROUGH22-39
Version 1.0
Returns the value of the title field of the variant.
{% for item in response.orders %}
{% for item2 in item.lines %}
<p>{{item2.variant.title}}</p>
{% endfor %}
{% endfor %}
{{ response.variant.title }}
Verde / 39
Version 1.0
Returns the value of the url field of the variant.
{{ response.variant.url }}
index.php?id=5&pid=3056
Version 1.0
Returns the value of the weight field of the variant.
{{ response.variant.weight }}
0.25
Version 1.0
Returns all of the line color in the variant.
Version 1.0
Returns the value of the size field of the variant.
{% for item in response.product.variants %}
<option value='{{item.id}}' >{{item.size}}</option>
{% endfor %}
{{ response.variant.size }}
39
Version 1.0
Returns the value of the length field of the variant.
{{ response.variant.length }}
20
Version 1.0
Returns the value of the available field of the variant.
{% for item in response.product.variants %}
<option value='{{item.id}}' {% if item.inventory_quantity disabled {% endif %} >{{item.size}}</option>
{% endfor %}
{{ response.variant.available }}
true
Version
Returns the value of the selected_size_order field of the variant.