Swatches on Shop Page Grid
-
Using woodmart main theme. Using product style QUICK. I do not want attribute swatches cluttering up (showing) on the shop page grid.
Especially on Mobile- the swatch shows up (I am using color swatches) encompassing about 20% of the product image.
Hello,
Actually, unfortunately, there isn’t a separate option available to hide the Attribute Swatches for Mobile view.
So, please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS:
@media (max-width: 768px) {
.wd-hover-base .wrapp-swatches {
display: none !important;
}
}
Best Regards.