Created
November 16, 2017 16:01
-
-
Save djrmom/02572569cbc9ad9d9966ef64e6cf5ee9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).on('facetwp-loaded', function() { | |
$('.facetwp-facet').each(function() { | |
var facet_name = $(this).attr('data-name'); | |
var facet_label = FWP.settings.labels[facet_name]; | |
if ( 'undefined' !== typeof FWP.settings.num_choices[facet_name] && FWP.settings.num_choices[facet_name] > 0 && $('.facet-label[data-for="' + facet_name + '"]').length < 1 ) { | |
$(this).before('<h3 class="facet-label" data-for="' + facet_name + '">' + facet_label + '</h3>'); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment