Home › Forums › WoodMart support forum › Deactivate / Remove „Add to Cart“ Button › Reply To: Deactivate / Remove „Add to Cart“ Button
September 5, 2023 at 10:28 am
#493242
Aizaz Imtiaz Awan
Keymaster
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.