Guest User

Untitled

a guest
Mar 24th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. /**
  2. * Set {n} selected text to show after 1 selection, on all facets
  3. */
  4. function td_facetwp_selected() {
  5. if ( is_tax() ) {
  6. ?>
  7. <script>
  8. (function($) {
  9. $(function() {
  10. if ('undefined' !== typeof FWP) {
  11. wp.hooks.addFilter('facetwp/set_options/fselect', function(opts, data) {
  12. opts.numDisplayed = 1;
  13. return opts;
  14. });
  15. }
  16. });
  17. })(jQuery);
  18. </script>
  19. <?php
  20. }
  21. }
  22. add_filter( 'wp_head', 'td_facetwp_selected', 100 );
Add Comment
Please, Sign In to add comment