Convertir checkboxes jerárquicas en acordeón posted on octubre 20, 2020 JS (function($) { $(document).on('facetwp-loaded', function() { $('.facetwp-depth').hide(); $('.facetwp-checkbox.checked').each(function() { $(this).parents('.facetwp-depth').show(); $(this).next('.facetwp-depth').show(); }); }); })(jQuery);