Skip to content

Instantly share code, notes, and snippets.

@DxDiagDx
Created March 24, 2022 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DxDiagDx/488275cfec5e756b5172237453c968f4 to your computer and use it in GitHub Desktop.
Save DxDiagDx/488275cfec5e756b5172237453c968f4 to your computer and use it in GitHub Desktop.
WooCommerce - скрыть количество товаров в категориях
add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );
function woo_remove_category_products_count() {
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment