• I’m hoping to be able to use Wp-Pro-Quiz to make an assessment where a user can only progress through the quiz when they get each question right (one at a time).

    In an old support thread it is mentioned that the developer is working on this and it should be part of the next release. That was around 8 months ago but I can’t seem to find this feature in the product.

    If anyone has more information about this or can offer any advice on how to get something working as described, I would be extremely grateful.

    Thanks,
    Richard

    https://wordpress.org/plugins/wp-pro-quiz/

Viewing 4 replies - 1 through 4 (of 4 total)
  • +1…

    I would love this add-on as well.

    Thread Starter richard_m_support

    (@richard_m_support)

    In case you’re interested I ended up building a custom solution, using this article as a starting point – http://css-tricks.com/building-a-simple-quiz/

    Best,
    Richard

    wpProQuiz_front.js – add var errorInQuiz = false; after var currentPage = 1;, then in checkQuestion method add the following in the else branch of if(result.c) { :

    if(!errorInQuiz){
      errorInQuiz = true;
      plugin.methode.showQuizSummary();
    }

    then minify or replace the .min.js with the patched version. worked for me.

    sheershoff

    I’d like to alter the existing code as you’ve mentioned, but I have zero knowledge of how to make that alteration. The quiz is perfect, I would just prefer it to require the correct answer before proceeding to the next question.

    Any help would be appreciated…thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Only allow progress when correct… ?’ is closed to new replies.