Skip to content

Instantly share code, notes, and snippets.

@Rhoteh
Rhoteh / wc-remove-subcounts.php
Created July 5, 2020 23:08 — forked from rynaldos-zz/wc-remove-subcounts.php
[WooCommerce 3.0] Remove brackets from product category counts
add_filter( 'woocommerce_subcategory_count_html', 'wc_filter_woocommerce_subcat_count_html', 10, 2 );
function wc_filter_woocommerce_subcat_count_html( $mark_class_count_category_count_mark, $category ) {
$mark_class_count_category_count_mark = ' <mark class="count">' . $category->count . '</mark>';
return $mark_class_count_category_count_mark;
};