jaba23
1
I found an article that talked about How to Manipulate Images with the img_url Filter, but it only shows how to use the Product Featured Image in the filters.
How can I set up the different color variants of a product with the line.product.featured_image | product_img_url: ‘medium’ filter?
Anyone can help?
You are probably referring to this blog post How to Manipulate Images with the img_url Filter
In the same way it can be applied to all images. For example if you want to show all product images and resize them at 400px, this is the code
{% for media in product.media %}
{% endfor %}
This is very generic, I hope it helps, if you need more details, let me know.