FacetWP add title to filter is filter is active

Whenever there is something to filter, add a title to the Facet.

function fwp_add_facet_labels()
{
    if (!is_front_page()) {
?>
        <script>
            (function($) {
                $(document).on('facetwp-loaded', function() {
                    $('.facetwp-facet').each(function() {
                        var $facet = $(this);
                        var facet_name = $facet.attr('data-name');
                        var facet_label = FWP.settings.labels[facet_name];

                        if ($facet.closest('.facet-wrap').length < 1 && $facet.closest('.facetwp-flyout').length < 1) {
                            $facet.wrap('<div class="facet-wrap"></div>');
                            $facet.before('<h3 class="facet-label">' + facet_label + '</h3>');
                        }
                    });
                });
            })(jQuery);
        </script>

    <?php
    } 
    
}
add_action('wp_head', 'fwp_add_facet_labels', 100);

Like this article?

Share on Facebook
Share on Twitter
Share on Linkdin
Share on Pinterest
Author picture

SitiWeb is de expert op het gebied van WordPress. gespecialiseerd in het leveren van maatwerk.

Leave a comment

Geef een reactie

Je e-mailadres wordt niet gepubliceerd. Vereiste velden zijn gemarkeerd met *