Saltar navegación

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

This support ticket is created hace 3 años, 4 meses. 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)

Este tema contiene 16 respuestas, tiene 2 mensajes.

Última actualización por Minesh hace 3 años, 4 meses.

Asistido por: Minesh.

Autor
Mensajes
#2175089

Hi Minesh,

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

Thanks

#2177363

Minesh
Supporter

Idiomas: Inglés (English )

Zona horaria: 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:
=> enlace oculto

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

});