There are instances when quiz answers should be kept secure so that students cannot share answers with those who are about to take the quiz. Please consider a Display Quiz Score as a default and Display Quiz Correct Answers as an option in the settings so that it can be turned off if desired.
Thanks for good idea!
I agree with this point.
Best regards,
This is available.
Enable the setting : WP Admin - LMS - Settings
Thanks, but checking 'Hide Correct Answers' does not provide the functionality requested. When marked, although the correct answer isn't given in the check results form, the entire quiz questions are still provided along with marked correct or incorrect. We don't want to provide a copy of the test at all, just the results (i.e., 70% or 7 out of 10 correct).
We also strongly need the function option to show only score percentage in Check Results, to prevent sharing of quiz and answers.
It's important to ensure the quality of future exams.
When can we expect it?
Ok, I have added a filter for this in version 2.5.
A switch or 2 line code fix will resolve this issue for you.
The filter is called wplms_hide_quiz_result_details
Adding code :
add_filter('wplms_hide_quiz_result_details',function($return){return 1;});
would hide the quiz results and only display the quiz scores.
Where I have to add this code?
Unable to find the add_filter for hiding quiz result details. Where should the code be added?
A response please on how to implement this filter?