Question: The extra product photos are missing on my desktop Shopify site but are visible on mobile. How do I make them appear on desktop?
Solution:
You can solve this issue by appending specific CSS code to the end of your 'base.css' file:
@media (max-width: 749px) {
.product slider-component.thumbnail-slider {
display: none!important;
}
}