How to add more than 15 images to wix store product

I have products with more than 15 variants to show. Please tell me there’s a way to add more than 15 images to the slider.

Hey @Aaron_Johns!

It’s not currently possible, but we do have a feature request open for it here - Wix Stores Request: Ability To Link Unique Images To More Than 15 Product Option Choices | Help Center | Wix.com

Worth voting for it if you haven’t already :muscle:

Thanks Noah, is there a way to get around this with code? I have just spent months building this site and we were just now given the final product list. If they can’t show more than 15 variants the client will literally demand a different platform and I just don’t even want to think about it.

As far as I know, the options shown in the dashboard are the options shown in the dashboard. That being said, I haven’t done much work with Wix Stores, so can’t say for certain.

Are they drastically over 15 images? Would creating each variation as a separate product be a viable option? I know someone is currently working on an app they’re releasing to the app market that allows you to show to site members “linked” products that is built for similar cases to this (e.g. variants as separate products, but then a user can easily jump between each product from the product page)

@CODE-NINJA - any ideas here?

There are over 300 products with multiple colors/flavors/variations etc. Breaking them out into individual products isn’t really an option. Is there somewhere I can get more info on this app you mentioned?

Will have to take a deeper look on the issue first.
Can take a while…

1 Like

Regarding the app - as far as I’m aware, nothing yet (I remember having a conversation with a community member who was working on it)

I’ve also asked the team if they have any ideas

Wix Store allows up to 15 images per product variant. However, you can use a workaround to add more images by utilizing the “Gallery” feature. Here’s a step-by-step guide:

  1. Create a separate gallery for each product variant with more than 15 images.
  2. Add all the images to the gallery.
  3. In the product settings, select “Gallery” as the image source for that variant.
  4. Choose the relevant gallery for that variant.

This way, you can showcase more than 15 images for each product variant in the slider!

Already found a SOLUTION here ?

Thanks everyone, my developer is looking into it currently, he seems to have figured it out but I’ll report back when we know for sure

1 Like

The gallery solution is not working for me. I’m trying to find a way to clone this product from WOO commerce https://www.mielkesfiberarts.com/product/merino-wool-top/

As Aaron mentioned, we ended up implementing a workaround using Velo code.

Each product has multiple Flavours, and each flavour has multiple images, so for some products we ended up with more than 15 images.
The work around we have implemented is to dynamically load the additional images via the media manager folder and file structure using Velo.

What it does is first get the name of the product you are looking at, then get a list of folders from media manager, and see if one of these matches the product name, and if so get the folder id. Then it does a lookup of the files within this folder, and outputs all the filenames in that folder as well as their URL. If no images exist for a flavour, it will loop through this image list and see if we can find a filename that contains the flavour text, and if so it will load that.

I hope in the future Wix remove the 15 images per product limitation. But in the meantime, perhaps my comment will help others trying to implement a work around.

Hi Tim,
This is a fantastic idea! :blush: Could you please clarify where exactly you implemented the Velo code? On which page of the site does it appear?

Additionally, I have a few questions:

  • Did you remove the 15-picture gallery of the product afterward?
  • How did you associate the pictures with the products so that the corresponding images display when a variant is selected?
  • Do you think it would be feasible to link the pictures to two different variants simultaneously?