Remove Select Option Button from Shop Page Product View

Hi There,

Please refer to this screenshot: http://prntscr.com/r7eu3a

When hovering mouse on the Shop page, some of my products showing the button named “Select Option”. It didn’t happen before but don’t know since when suddenly it started showing. Here’s my shop link: https://www.voyageswimwear.com/shop/

I’m using Theme X and everything is up to date.

Best

Hi Alessandro,

Thank you for writing in, I see you added this custom CSS to hide the “add to cart” button.

.button.product_type_variable.add_to_cart_button {
	display: none !important;
}

Please update that to the one below to hide the “Select Option” button as well.

.button.product_type_variable,
.button.product_type_variable.add_to_cart_button {
	display: none !important;
}

You can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial

Hope it helps,
Cheers!

Thank you, it worked perfectly.

You’re most welcome, Alessandro.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.