Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. // Add this and below
  4. add_action( 'wp_head', function() {
  5. ?>
  6. <script>
  7. (function($) {
  8. $(document).on('facetwp-loaded', function() {
  9. if (! FWP.loaded) {
  10. $(window).resize(function() {
  11. var xVal = $(window).width() < 767 ? 0 : 400;
  12. facetwp_map.panBy(xVal, 0);
  13. });
  14. $(window).trigger('resize');
  15. }
  16. });
  17. })(jQuery);
  18. </script>
  19. <?php
  20. }, 100 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement