Hey all! I’m trying to save time by resizing product images to fit all the necessary placements at once—I hate having to do it one by one. Not sure if this will help the community, but I started using this website to do it: https://derivv.com/. Does anyone know of a way to do this in shopify? I’d prefer not to have to leave shopify, resize the images, and then import them. Thanks!
Have you tried manipulating the images with img_url filter?
https://www.shopify.com/partners/blog/img-url-filter
This is one example I use:
{% for image in product.images %}
{% if image.attached_to_variant? == false %}
{% endif %}
{% endfor %}
1 Like
I haven’t. So this would let me upload a single image and it would resize it to fit all the necessary placements? Thanks for the info!
Yes, you are able to manipulate pretty much any image uploaded on Shopify with the img_url filter. This includes cropping them to any size needed.
When doing this, make sure you set the size you want AND the crop position (Center, left, right, etc…)
1 Like