Hiding Product Counts in The Category View

Hiding Product Counts in The Category View

 

add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );

function woo_remove_category_products_count() {
     return;
}

 


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *