Remove Add to Cart Button in WooCommerce Archive Pages, Single Product, Category

remove add to cart

Remove add to cart button from various shop pages into woocommerce plugin these code works in Archive pages and single product pages. Check theme for WooCommerce ready WordPress Themes eCommerce

Read Also

remove add to cart

Remove Add to Cart from Archive Pages – Product Listing pages

/**
 * remove add to cart buttons on shop archive page
 */
 
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10);

Remove Add to Cart from Specific Category Page

function remove_add_to_cart_buttons() {
 if( is_product_category() ) { 
 remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
 }
 }
add_action( 'woocommerce_after_shop_loop_item', 'remove_add_to_cart_buttons', 1 );

Remove Add to Cart from Single Product Page

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );

You can simply copy and paste codes into you themes function.php file make sure don’t cross paste with any code tag. Better to take backup first. Any question or suggestion please comment below don’t forget to subscribe us.

Sandy

Sandy

6 thoughts on “Remove Add to Cart Button in WooCommerce Archive Pages, Single Product, Category

  1. What if I want to “Remove Add to Cart from Archive Pages – Product Listing pages” but only for some specific product?

    1. For specific product pages you can remove add to cart button by adding this code to the functions.php

      add_filter(‘woocommerce_is_purchasable’, ‘wpblog_specific_product’);
      function wpblog_specific_product($purchaseable_product_wpblog, $product) {
      return ($product->id == specific_product_id (512) ? false : $purchaseable_product_wpblog);
      }

      Reference: https://www.wpblog.com/add-to-cart-button-in-woocommerce-store/

  2. Would this work to remove add to cart and price for products that fall under a certain URL extension? Like http://www.mysite.com/wholesale

    $(function(){
    if (“url:contains(‘wholesale’)”) {
    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’);
    return WooCommerce::instance();
    }
    }

    1. You need css to do this like

      body.home .add_to_cart_button {
      display: none;
      }

      change maine body home classes with your page class

Leave a Reply to Bagas An Cancel reply

Your email address will not be published. Required fields are marked *

Name *
Email *