Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End How To Hide or Disable Add To Cart Button In WooCommerce Store Reply To: How To Hide or Disable Add To Cart Button In WooCommerce Store

#287003
iThemesforests
Participant

So, to remove add to cart button from product detail page and shop page i.e. product listing page all we need to do is to add these two hooks.

remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’);
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_add_to_cart’, 30 );
We can place this code in any place where it should be appropriate.

This could also be done with CSS by targeting the relevant classes:

.cart{display:none;}

Another example is:

.woocommerce .products .shop-column.product-hover-style-2 .product-content
.product-add-to-cart-btn{
display:none !important;
}

Reference : https://www.ithemesforests.com/how-to-hide-or-remove-add-to-cart-button-in-woocommerce/