What I would like to do it to be able to write a new ConLib to display all of the option images on the product page (similar to the swatches table if you select the show swatches box). But I DONT want to show the swatches. That box will be unchecked. I want to just display all of the option Images not the swatch images. Does this make sense.
I'm trying to figure out where to find this code. I see things like:
Code: Select all
ProductOptionCollection productOptions = product.ProductOptions;
int optionCount = productOptions.Count;
for (int i = 0; i < optionCount; i++)
{
}
Is there any documentation on these functions, etc? Or does anyone know how to do this? I want something similar to the example about the "CustomProductSwatches" conlib that someone had posted. I want it to be similar to that but instead of showing the extra product images, I want it to show the product option/variant images.
thanks for any help!!! I'm new to all this and just trying to figure this out.