Example

Some examples of image alt and filename for you to take reference

1. Image Alt examples​

1.1 Product Image Alt​

Support variables: {{ product.title }}, {{ product.product_type }}, {{ product.vendor }}, {{ product.tags }}, {{ shop.name }}, {{ shop.domain }}

Examples:

{{ product.title }} {{ shop.name }}

1.2 Collection Image Alt​

Support variables: {{ collection.title }}, {{ shop.name }}, {{ shop.domain }}

Examples:

{{ collection.title }} {{ shop.name }}

1.3 Blog Post Image Alt​

Support variables: {{ article.title }}, {{ article.author }}, {{ article.tags }}, {{ shop.name }}, {{ shop.domain }}

{{ article.title }} {{ shop.name }}

2. Image Filename examples​

It will slugify automatically. For example, the text is : Summer T-shirt by Smile, so the filename will be summer-t-shirt-smile

2.1 Product Image Filename​

Support variables: {{ product.title }}, {{ product.product_type }}, {{ product.vendor }}, {{ product.tags }}, {{ shop.name }}, {{ shop.domain }}

Examples:

{{ product.title }} {{ product.tags }}
{{ product.title }}
{{ product.title }} {{ shop.name }}
{{ product.title }} by {{ shop.name }}

2.2 Collection Image Filename​

Support variables: {{ collection.title }}, {{ shop.name }}, {{ shop.domain }}

Examples:

{{ collection.title }} 
{{ collection.title }} {{ shop.name }}
{{ collection.title }} by {{ shop.name }}

2.3 Blog Post Image Filename​

Support variables: {{ article.title }}, {{ article.author }}, {{ article.tags }}, {{ shop.name }}, {{ shop.domain }}

Examples:

{{ article.title }} {{ article.tags }}
{{ article.title }} 
{{ article.title }} {{ shop.name }}
{{ article.title }} by {{ shop.name }}
{{ article.title }} {{ article.author }}

Last updated