Hi @crownst,
I hope you are keeping well and thank you for reaching out to us.
It’s not possible to disable the scroll effect on a Formiantor Quiz out of the box. Could you please try adding the following code snippet using a mu-plugin and check if that helps?
<?php
add_action('wp_footer', 'wpmudev_quiz_scroll_quest_fix', 9999);
function wpmudev_quiz_scroll_quest_fix() {
global $post;
if ( is_a( $post, 'WP_Post' ) && !has_shortcode($post->post_content, 'forminator_quiz') ) {
return;
}
?>
<script type="text/javascript">
jQuery(document).ready(function($){
setTimeout(function() {
$('.forminator-quiz').trigger('after.load.forminator');
},100);
$(document).on('after.load.forminator', function( e, formID ) {
var form_id = e.target.id;
jQuery('#'+form_id).find('.forminator-quiz-start').on('click', function(){
setTimeout(function(){
jQuery("html, body").stop();
},100);
});
});
jQuery( document ).on('forminator.front.pagination.move', function( e ) {
setTimeout(function(){
jQuery("html, body").stop();
},100);
});
});
</script>
<?php
}
We recommend testing this on the dev/staging version first before putting it on the live site. I hope the following guide comes in handy: https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins
Kind Regards,
Nebu John