Come nascondere i conteggi vuoti?
Collegamento domanda: https://pluginus.net/support/topic/how-to-hide-empty-counts/
Nel file functions.php aggiungi il seguente codice:
add_filter('woof_get_terms_args', function ($args) {
$args['hide_empty'] = true;
return $args;
});