[ad_1]
What about eh back to the top button? It feels like it smooth scrolls and I see this code: var generatepressBackToTop={"smooth":"1"}
when checking page source.
(@yingscarlett)
You can use this code:
add_filter( 'generate_back_to_top_js_args', function( $args ) {
$args['smooth'] = false;
return $args;
} );