WooCommerce Filtrelerinde Boş Terimler Nasıl Gizlenir
WooCommerce filtresinde sıfır ürün içeren taksonomi terimlerini gizlemek için:
Soru bağlantısı: https://pluginus.net/support/topic/how-to-hide-empty-counts/
Dosyaya functions.php aşağıdaki kodu ekleyin:
add_filter('woof_get_terms_args', function ($args) {
$args['hide_empty'] = true;
return $args;
});