Navigation überspringen

[Gelöst] hideempty=true not working when taxonomy connected to two post type

This support ticket is created vor 3 Jahren, 4 Monaten. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

Dieses Thema enthält 16 Antworten, hat 2 Stimmen.

Zuletzt aktualisiert von Minesh vor 3 Jahren, 4 Monaten.

Assistiert von: Minesh.

Author
Artikel
#2175089

Hi Minesh,

Yes! I disable all caching related code and plugins you can check.

Thanks

#2177363

Minesh
Supporter

Sprachen: Englisch (English )

Zeitzone: Asia/Kolkata (GMT+05:30)

There is no way to filter the empty terms added as frontend filter on the archive you created.

Finally, as a workaround I found a JS solution.

I've added the following custom JS code to your archive:
=> versteckter Link

jQuery(document).ready(function($){
  
  $("div.checkbox span:contains(0)").parent().parent().remove();

});