Dar estilos a las «parent checkbox» posted on octubre 20, 2020 JS (function($) { $(document).on('facetwp-loaded', function() { $('.facetwp-type-checkboxes > .facetwp-checkbox').each(function() { // top-level terms $(this).find('.facetwp-counter').hide(); // hide the counter $(this).after('<div class="is-divider small"></div>'); // add the separator $(this).css({ // add some extra styles 'font-size': '1em', 'font-weight': '600', 'line-height': '1.05', 'letter-spacing': '.05em', 'text-transform': 'uppercase', 'padding-left': '0px', 'background': 'none', 'margin-top': '20px' }); }); }); })(jQuery);