Hiding variant images from thumbnail on dawn theme

Hiding variant images from thumbnail on dawn theme

Viliwyth
Visitor
1 0 0

Hi everyone,

 

Variant pictures of my products are shown on the thumbnail. However, I want them to be shown only when selected. I looked through the code but couldn't figured out what to do.

Replies 2 (2)

made4Uo
Shopify Partner
3848 717 1190

Hi @Viliwyth

 

This can only be done with custom liquid and javascript code. Please check this demo store. Please check the video link  here

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free

graphicow3n
Shopify Partner
11 1 0

If you or someone else needs this still. Add this to the section-main-product.css file.

 

.product__media-item:not(:first-child) {
display: none;
}

 

The above code will hide all thumbnails except for the selected options thumbnail.