Is there a quick way to add the same image to multiple products?

Hi there! I’d like to add a couple images showing size comparisons and color comparisons to a large subset of my products. These images will be exactly the same across a couple hundred products. Is there a way to do this that doesn’t involve going into each individual product and applying the image?

Thank you!

You can do with the code but still you need a common thing like tag/collection etc so with the code you can declare to which products this image will appear.

Hi Guleria! They do all share a common tag. Where can I do that?

Find the place in the code where you need to display the image.
Use this condition:

{% if product.tags contains 'specificTag' %}

{% endif %}

Note change specificTag with actual tag

I’ll give that a shot, thanks! I was hoping for a way to add the image into each product without using code, as I’m using an app to also sync my catalog to Etsy (where I would also want this image to be part of each product), but this is great for now!

Thanks again!