- This topic has 15 replies, 2 voices, and was last updated 11 years, 7 months ago by .
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Moved: Reply To: Search & Filter Pro on Woocommerce doesn't affect the loop
Hey Chris do you mean when AJAX has completed you would like the page to scroll to the top automatically?
In this case its quite simple you just need to add some JS to your theme:
$(".searchandfilter").on("sf:ajaxfinish",function(){
$("html, body").animate({ scrollTop: 0 }, "slow");
});
Let me know 🙂