Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wbcomdev/d85a675564cd096f95d0a8ed2dd1bc53 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/d85a675564cd096f95d0a8ed2dd1bc53 to your computer and use it in GitHub Desktop.
<?php
/**
* Woocommerce product count from product archive category page.
*
* @return void
*/
function wbcom_remove_product_result_count_from_category_page() {
if ( is_product_category() ) {
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
}
}
add_action( 'woocommerce_archive_description', 'wbcom_remove_product_result_count_from_category_page', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment