Is there a way to hide the 2nd image on the product page?

Topic summary

A user wants to hide the second product image from their default product page view while keeping it functional for the “Show second image on hover” feature.

Current situation:

  • The store URL is witnessskate.com
  • Second image is visible on the product page but should only appear on hover
  • User also wants to hide navigation arrows/buttons on the product media slider

Solutions provided:

CSS code to hide images beyond the first:

.product__media-item.grid__item.slider__slide:nth-child(n+2) {
  display: none !important;
}

CSS to remove slider navigation buttons:

.product__media-wrapper .slider-buttons {
  display: none;
}

Open question:
The user asks if this customization can also be applied to their Shop app store, which remains unanswered.

Summarized with AI on November 22. AI used: claude-sonnet-4-5-20250929.

I want to know how I can hide the 2nd image on my product page. I’m only using it for the “Show second image on hover” and don’t want it visible on my Default Product view.

@Witness hello can you share the store URL so i can check?

https://witnessskate.com

Cant see any other images than one

try this css in base.css

.product__media-item.grid__item.slider__slide:nth-child(n+2) {
display: none !important;
}

any way to get rid of this?

.product__media-wrapper .slider-buttons {
display: none;
}

Is there a way to do this for my Shop app store?