Home Forums WoodMart support forum How do I remove star rating on hover Reply To: How do I remove star rating on hover

#100299

Hello,

Please add this code to the Theme Settings > Custom CSS

.woodmart-hover-base.has-stars.purchasable .star-rating{
	display:none;
}
.woodmart-hover-base .wrapp-product-price {
    transition: none; 
}
.woodmart-hover-base.has-stars.purchasable:hover .wrapp-product-price {
    transform: none!important;
    -webkit-transform: none!important; 
}

Best Regards