Hey @sarahrgb,
I removed the option to show / hide results on a per quiz basis because it’s a feature that, in my time as the lead developer, I’ve very rarely seen *disabled*. My goal is to always reduce options for both performance reasons and because the more options the more overwhelming I find using our software is. An option like this leads to questions from new users that prevent them from building a quiz because now they’re wondering if they need to consider whether or not to show results.
You can still disable this with a bit of code if you feel that results shouldn’t be shown:
remove_action( 'llms_single_quiz_attempt_results_main', 'lifterlms_template_quiz_attempt_results_questions_list', 10 );
You can add that to your child theme’s functions.php file or to a custom plugin: https://lifterlms.com/docs/how-do-i-add-custom-code-to-lifterlms-or-lifterlms-launchpad/
The option to show/hide the correct answers within results can be found under the quiz settings. Click the gear near the quiz title when editing a quiz in the builder and you’ll see a toggle allowing you to enable / disable correct answers in the results.
Hope that helps,