Home Forums WoodMart support forum How can I cancel the button of “select option”

How can I cancel the button of “select option”

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #673035

    qingpeisu
    Participant

    Hi,

    As the title says, I want to cancel the “select options” button on the product grid in the shop page, because my products do not need this button. I have tried many ways, but I can’t cancel it. Please tell me how to cancel this button, thank you very much.

    Attachments:
    You must be logged in to view attached files.
    #673426

    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,

Viewing 2 posts - 1 through 2 (of 2 total)