ProductList Component Add To Cart button Bug

hi

I’m using ProductList component and I think there maybe a bug in this component

Strangely, when I set the ProductList component to Card view, the Add to Cart button would show up when it is hover over as shown


But when I set the ProductList component to List view, both the Add To Cart buttons show without hovering over as shown

How do I disable the hover on the Add to Cart button in Card view? Thanks

Just add the following css to your site:

.ref-cards .ref-addons {
  opacity: 1!important;
  visibility: visible!important;
}
1 Like