Check Results

Home Forums Legacy Support Support queries Setup issues Check Results

Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #87129
    lau919
    Spectator
    To prevent quiz sharing and ensure the quality of future exams, we don't want the questions to show in Check Results. Only showing the score (70%) is enough. If an option function is not available at present, how can we achieve it by adding some codes?
    #87189
    Anshuman Sahu
    Keymaster
    Well as of now there is no such setting or feature available but we can hide this with the help of css . Please try adding the given css in your wp-admin -> appearance -> customizer -> custom css : ul.quiz_questions {     display: none; }
    #93340
    rarego
    Spectator
    I am also interested in this option (hide the questions from "check results") but unfortunately the code provided in CSS also hides the question for the instructor which is not very convenient.   1.- Is there an alternative that hides the questions only to students?   2.- Could also this be done to specific quizzes?   Thanks.
    #93384
    2. Sorry, but this is not available. 1. Go to wplms-customiser plugin and paste this code in the wplms-customiser.php   add_filter('wplms_hide_quiz_result_details',function(){ if(is_user_logged_in() && !current_user_can('edit_posts')){ return 1; } else{ return 0; } });
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Check Results’ is closed to new replies.