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

#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.