Skip to content

Instantly share code, notes, and snippets.

@timba64
Last active July 16, 2018 07:34
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 timba64/a376ed55301a2d66f74ab2012b767344 to your computer and use it in GitHub Desktop.
Save timba64/a376ed55301a2d66f74ab2012b767344 to your computer and use it in GitHub Desktop.
remove quantity in woocommerce categories
//убираем количество в категориях
add_filter('woocommerce_subcategory_count_html','remove_count');
function remove_count(){
$html='';
return $html;
}
@timba64
Copy link
Author

timba64 commented Jul 16, 2018

убираем количество товаров в категориях woocommerce

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment