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

Solved

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

wildpour
New Member
6 0 0

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!

Accepted Solution (1)
Guleria
Shopify Partner
4110 804 1155

This is an accepted solution.

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

{% if product.tags contains 'specificTag' %}
<!-- Your  image call -->
{% endif %}

Note change specificTag with actual tag

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

View solution in original post

Replies 4 (4)

Guleria
Shopify Partner
4110 804 1155

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.

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
wildpour
New Member
6 0 0

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

Guleria
Shopify Partner
4110 804 1155

This is an accepted solution.

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

{% if product.tags contains 'specificTag' %}
<!-- Your  image call -->
{% endif %}

Note change specificTag with actual tag

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
wildpour
New Member
6 0 0

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!