How to disable hover on product woo commerce

Viewed 1863
2 Answers

Add below CSS.

.woocommerce ul.products li.product:hover .secondary-image, .woocommerce-page ul.products li.product:hover .secondary-image{ display: none !important; }
.product-button-hover { display: none !important; opacity: 0 !important; }

Add this css in your theme style.css

li.product:hover .product-button-hover {
    opacity: 0 !important;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    transform: translateY(0);
}
Related