Skip to content

Instantly share code, notes, and snippets.

@bulentsakarya
Last active December 11, 2019 09:18
Show Gist options
  • Save bulentsakarya/5656bb16915876f2361178a746b1eb0b to your computer and use it in GitHub Desktop.
Save bulentsakarya/5656bb16915876f2361178a746b1eb0b to your computer and use it in GitHub Desktop.
WooCommerce remove add to cart button from archive and single product page
/**
* Remove Add to Cart button from archive
*/
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
/**
* Remove Add to Cart button from product page
*/
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment