Remove add to cart WooCommerce

Hi

i was able to remove add to cart in my main shop page using global css

.post-type-archive-product .add_to_cart_button {
display: none !important;
}

can you please tell me what to use to remove the add to cart button on every product except the detail page of a product?

thanks.

Hi @markiert,

Try this:

.woocommerce li.product .entry-header .button {
    display: none;
}

Single product page uses this selector .single_add_to_cart_button.button so that CSS will not affect single/detail product page.

If you encounter any issues, please share the specific URL.

Hope this helps.

Worked. Thank you!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.