Hello,
The “Select Options” button appears on the shop page for variable products because WooCommerce requires customers to choose a variation (like size or color) before adding the product to the cart. This is the default behavior for variable products.
On the other hand, simple products—which don’t have variations—will show the regular “Add to Cart” button.
If your products don’t actually require customers to choose options and you’d prefer not to show the “Select Options” button, you can remove the variation from the edit product page.
Additionally, if you want to simply hide this button. Please add the following code in Theme Settings > Custom CSS > Global CSS section:
.product-grid-item .button.product_type_variable {
display: none !important;
}
This will hide the “Select Options” button from the product grid while keeping everything else functional. Just keep in mind that this only hides the button visually; it doesn’t make the product directly purchasable from the shop page. Customers will still need to open the product page to complete the purchase if variations are available.
Best Regards,