Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Ken Nguyen

    (@kendy73)

    Hi costellos,

    In LearnPress design, quiz duration is required. We got some same feedback from other LearnPress users and we will consider adding an option for this, like your idea, unlimited time for quiz.

    Thanks for your concern.

    Regards,

    Ken

    Thread Starter costellos

    (@costellos)

    I have found a work around for anyone looking to do the same.

    if you add the following in your theme’s functions.php file it will remove the counter from the page

    function theme_slug_update_learn_press_templates() {
    		//Remove Actions
    		remove_action( 'learn_press_content_quiz_sidebar', 'learn_press_single_quiz_time_counter' );
    
    		//Add Actions
    }
    add_action( 'after_setup_theme', 'theme_slug_update_learn_press_templates' );

    which seems to let you take as long as you would like for the quiz, and if the user takes longer then the allotted time it just fills in they took the maximum allowed in the time field.

    Plugin Contributor Ken Nguyen

    (@kendy73)

    That trick is nice ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Turn off timer?’ is closed to new replies.