[SOLVED] Always Show "Add to Cart" Button on Reflow Card Layout

Hi! Is there a way to make the “Add to Cart” button always visible on the Reflow product list when using the "card layout’, just like it is in the “list layout”?

Thanks!

Hello!

There isn’t a built-in option for keeping the buttons in the Card layout visible.

Right now they are shown on mouse hover but you can force them to always stay visible with a bit of CSS:

.reflow-product-list.ref-cards .ref-product .ref-addons {
	opacity: 1;
	visibility: visible;
}

Hope this solution works for you!

1 Like

Thank you so much! I have tried to find the correct classes myself but without luck. This did it!

1 Like