Solved

limit number of photos shown on product pages

cj18
Excursionist
26 0 5

Is there a way to limit the number of pictures showing up on product pages? I dont want the landing/product page to show all the variants that are being uploading for the variant pictures and not pictures on the landing page. 

Example page: https://crystallation.com/products/birthstone-necklace

 

I only want to show 6 pictures on this page

 

 

Accepted Solution (1)

Mike-Consentik
Shopify Partner
196 30 38

This is an accepted solution.

Hi @cj18 

This is Mike from Omega

In this case, you can add this code below to Custom CSS of your product page

MikeOmega_0-1677124197515.png

code: 

ul.product__media-list li.product__media-item:nth-child(n+7) {
    display: none;
}

It just hide images on your product page, but these hidden images still are loaded to your website. 

 

Hope my answer will help you.

 

Mike from Omega

If you find this helpful, please give it a like or mark it as a solution.
Consentik GDPR Cookie Banner: Effortlessly stay in compliance with EU GDPR and CCPA with Google Consent Mode V2. Free plan available and 24/7 Support

View solution in original post

Replies 2 (2)

Mike-Consentik
Shopify Partner
196 30 38

This is an accepted solution.

Hi @cj18 

This is Mike from Omega

In this case, you can add this code below to Custom CSS of your product page

MikeOmega_0-1677124197515.png

code: 

ul.product__media-list li.product__media-item:nth-child(n+7) {
    display: none;
}

It just hide images on your product page, but these hidden images still are loaded to your website. 

 

Hope my answer will help you.

 

Mike from Omega

If you find this helpful, please give it a like or mark it as a solution.
Consentik GDPR Cookie Banner: Effortlessly stay in compliance with EU GDPR and CCPA with Google Consent Mode V2. Free plan available and 24/7 Support
cj18
Excursionist
26 0 5

This is so lit! thank you