Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Harmonic Design

    (@harmonic_design)

    Hi Callender,
    A quick and dirty solution is to add the following jQuery to the bottom of your site. This would work for all quizzes to ensure that questions are hidden no matter what once a quiz has been submitted.

    <script>
    jQuery(window).load(function() {
      jQuery(".hdq_finsh_button").click(function(){
        jQuery(".hdq_question").hide();
        setTimeout(function(){jQuery(".hdq_results_wrapper").fadeIn()}, 500);
      });
    });
    </script>

    You can add that copy/paste that code to the bottom of footer.php. Please let me know if you need any help doing so.

    Thread Starter callender

    (@jimcallender)

    sweet! thank you

    Plugin Author Harmonic Design

    (@harmonic_design)

    Thanks for bringing this up. I’ll add it as a quiz option in the next version for others to use as well ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Just show results on last page’ is closed to new replies.