Skip to content

Instantly share code, notes, and snippets.

@joeyz
Created October 24, 2014 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeyz/a82f17d2ccab501a227b to your computer and use it in GitHub Desktop.
Save joeyz/a82f17d2ccab501a227b to your computer and use it in GitHub Desktop.
Remove add to cart button on cat archive pages
//remove add to cart button on category archive pages.
function remove_loop_button(){
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
}
add_action('init','remove_loop_button');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment