FacetWP – hide specific facets from appearing in User Selections

(function($) {
    FWP.hooks.addAction('facetwp/loaded', function() {
        $('.facetwp-selections li').hide();
        $('.facetwp-selections li[data-facet="region"]').show();
    }, 12);
})(jQuery);