Skip Navigation

[Resolved] hideempty=true not working when taxonomy connected to two post type

This support ticket is created 3 years, 2 months ago. 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)

This topic contains 16 replies, has 2 voices.

Last updated by Minesh 3 years, 2 months ago.

Assisted by: Minesh.

Author
Posts
#2175089

Hi Minesh,

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

Thanks

#2177363

Minesh
Supporter

Languages: English (English )

Timezone: 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:
=> hidden link

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

});