product image shopify liquid code example
Example 1: image tag in shopify liquid
{{ 'logo.png' | asset_url | img_tag: 'The Soap Store' }}
Example 2: get product main image shopify
{% for image in product.images offset:1 limit:1 %}
<img src="{{ image.src | product_img_url: '500x' }}">
{% endfor %}