Shopify Liquid – Get the URL for a variant's image
On a Shopify product page, I can loop through all the variants and get information about them like this: {% for variants in product.variants %} {{ variants.id }}<br> {{ variants.sku }}<br> {{ variants.title}}<br> {{ variants.price | divided_by: 100}}<br> {% endfor…