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?
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;
}
.product__media-wrapper .slider-buttons {
display: none;
}