Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Jump to bottom of page when quiz results load
(1 viewing) (1) Guest
"ARI Stream Quiz" WordPress plugin
Go to bottomPage: 12
TOPIC: Jump to bottom of page when quiz results load
#66204
Re:Jump to bottom of page when quiz results load 4 Years, 3 Months ago Karma: 748
Try now please. We configured "Scroll offset" parameter in plugin settings. If something is working wrong then provide a direct link to a quiz where the problem occurs. You can send it by email.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#66205
Re:Jump to bottom of page when quiz results load 4 Years, 3 Months ago Karma: 0
Thank you! Just to clarify, does the "Smart scroll" option need to be checked in order for this to work?
The administrator has disabled public write access.
 
#66207
Re:Jump to bottom of page when quiz results load 4 Years, 3 Months ago Karma: 748
Without this option the plugin will not navigate to next section. In case with results it will auto navigate to top of results section.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#66208
Re:Jump to bottom of page when quiz results load 4 Years, 3 Months ago Karma: 0
My preference is to NOT use smart scroll; however, when I uncheck the smart scroll option, I am still having the issue of the page "jumping" to the bottom when the result is displayed. How can I show the quiz result in the correct location without using smart scroll? Thanks.
The administrator has disabled public write access.
 
#66223
Re:Jump to bottom of page when quiz results load 4 Years, 3 Months ago Karma: 748
Open "ARI Stream Quiz -> Settings -> Advanced" page and populate "Custom JS code" parameter with the following code:

Code:


jQuery(function($) {
  setTimeout(function() {
    var quizzes = jQuery('.ari-stream-quiz').ariStreamQuiz();
    if (!quizzes) return;
    if (!(quizzes instanceof Array)) quizzes = [quizzes];
    $.each(quizzes, function(idx, quiz) {
        var showResults = quiz.showResults;
        quiz.showResults = function(disableScroll) {
           var smartScroll = this.options.smartScroll;
           this.options.smartScroll = true;
           showResults.call(quiz, disableScroll); 
           this.options.smartScroll = smartScroll;
        }
    });
  }, 10);
});



After this you can disable "Smart scroll".

Regards,
ARI Soft
The administrator has disabled public write access.
 
#66224
Re:Jump to bottom of page when quiz results load 4 Years, 3 Months ago Karma: 0
Super. Thank you so much!
The administrator has disabled public write access.
 
Go to topPage: 12