Home Forums WoodMart support forum Deactivate / Remove „Add to Cart“ Button

Deactivate / Remove „Add to Cart“ Button

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #492775

    finn
    Participant

    Hello, how can I globally remove the „add to cart“ / „read more“ buttons for all woocommerce products?

    Thanks

    #492811

    Hello,

    Go to Theme Settings > Shop > enable the option catalog mode.

    Best Regards.

    #492822

    finn
    Participant

    Thanks! Sorry my question was not detailed enough. Sorry.

    I want to show the „Add to cart“ button on the product single page but nowhere else.

    Is that possible?

    Thanks

    #492953

    Hello,

    Yes it is possible. Create a custom layout for a specific single product page where you want to show an add to cart button and drag and drop the shortcode widget and and the following shortcode.
    [add_to_cart id=305]

    Change the product id as per your requirements.

    Best Regards.

    #493146

    finn
    Participant

    Hello, I think I have expressed myself incorrectly. I generally need the normal shopping cart and checkout function. Everything should remain as in the source.

    But I would like to hide (gladly via css) all “Add to cart” buttons. Only the “Add to cart” button on the product detail page should remain.

    Thanks and sorry for the misunderstandings.

    #493242

    Hello,

    The below code will help you to hide the “Add to cart” button on the archive page. Enter it into the “Global Custom CSS” area in Theme Settings -> Custom CSS.

    .product-grid-item .wd-add-btn {
        display: none;
    }

    The below will help you to hide the “Add to cart button on a single product page.

    .single_add_to_cart_button {
        display: none !important;
    }

    Best Regards.

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