Forums › Forums › Search & Filter Pro › Scroll to stopped working
- This topic has 15 replies, 2 voices, and was last updated 8 years, 7 months ago by Anonymous.
-
Anonymous(Private) April 12, 2016 at 11:54 pm #42554
Hello,
Quick one, I’m using masonry on my Ajax results so I call it back in as below :
<script type="text/javascript"> ( function($) { $(document).on("sf:ajaxfinish", ".searchandfilter", function(){ $('.grid-archive').masonry(); }); } ) ( jQuery ); </script>
But since doing that it no longer scrolls to my results container, I’ve tried a scroll to myself within the above js but it doesn’t work as well as yours. Anything I can do?
Thanks ๐
Ross Moderator(Private) April 13, 2016 at 8:05 am #42573Hey TJ
I think its a matter of ordering of events – S&F probably does scroll but the masonry call is messing this up somehow (perhaps the masonry script uses
scrollTop
somewhere and this clashes with S&F).I would try to manually add the scrolling back in after the masonry call – so taking some scrolling code from S&F (with modification):
var scrollToPos = function() { var offset = 0; var canScroll = true; if(jQuery("#focus-results").length>0) { offset = jQuery("#focus-results").offset().top; } $("html, body").animate({ scrollTop: offset }, "normal", "easeOutQuad" ); };
Then after masonry you could do
scrollToPos();
You might even need to add a delay for masonry to complete so:
setTimeout(function(){ scrollToPos(); }, 100);
Just to confirm, if you do not use that masonry script scrolling works fine?
Let me know how you get on.
Thanks
Ross Moderator(Private) April 13, 2016 at 3:19 pm #42645Hey TJ thats odd.
S&F tried to find the selector on the page, and if it doesn’t exist it won’t fire.
What happens when you change the scroll position to custom, and enter in the ID of the results container manually?
Did you try the code I supplied too, just to see if its working?
Thanks
Anonymous(Private) April 13, 2016 at 3:56 pm #42647Hey Ross,
I know, so strange! So I’ve changed it to custom and set it to go to #focus-results but still not working.
No, I haven’t tried your other suggestion yet, only because I want this to work for another search form on a people search where there will be no masonry so would like to try and get this one sorted first if that’s ok, then you never know it may just work again on masonry too, but if not I will try what you have said for sure :).
Anonymous(Private) April 13, 2016 at 9:21 pm #42696Hey Ross, just had chance to test a little more, basically I’ve now re-added masonry and set it to go to “Results Container” and it actually works fine on Firefox and Internet Explorer.
But it doesn’t work on Chrome (tested on different machines too just in case) or on Safari (tested on mobile, where it just stays at the bottom of the results) – they just won’t play ball. It’s as though they just can’t see the container, but it’s there, and there’s no code/tag snags that could confuse it, and it’s a unique identifier, you can see if you view source. I also added a completely separate dummy container, and set it to go to “Custom Selector:” but sadly it made no difference.
Any ideas? As mentioned I don’t want to place that other code you suggested, as I want this to work on another set of results without masonry so need it for that anyway. Many thanks ๐
Ross Moderator(Private) April 13, 2016 at 9:39 pm #42697Hey TJ, just thought, did you by any chance update to the new WP today?
-
AuthorPosts