sinanisler logo

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;
}

 

Leave the first comment