|
|
Pagination in blocks based archive view
Started by: Stephen Vaughan
in: Toolset Professional Support
Quick solution available
Problem:
Force Ajax pagination to scroll to a certain place on the page
Solution:
Add the Javascript below to your theme:
jQuery( document ).on( 'js_event_wpv_pagination_completed', function( event, data ) {
jQuery([document.documentElement, document.body]).animate({
scrollTop: jQuery(".js-wpv-loop-wrapper .tb-grid-column:nth-child(1)").offset().top
}, 300);
});
Change the selector in the code depending on your needs.
|
|
2 |
3 |
3 years, 6 months ago
Stephen Vaughan
|