A simple, powerful and independent e-commerce platform.
Sell anything with ease.

Remove result count from category page

This code removes the result count showing the total of product numbers listed on the category page.

		
/**
* Remove result count from category page
*/
add_action('init', 'cc_remove_result_count');
function cc_remove_result_count() {
remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
}
View Raw Code ID: 91138