Skip to content

Instantly share code, notes, and snippets.

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 chellestein/347501af1966becbbbd1852907489b91 to your computer and use it in GitHub Desktop.
Save chellestein/347501af1966becbbbd1852907489b91 to your computer and use it in GitHub Desktop.
Remove Price, Cart and Star Raiting from WooCommerce Archive Pages - Show Just the Image and Title
// Remove Price, Cart and Star Raiting from WooCommerce Archive Pages - Show Just the Image and Title
remove_action ('woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment