Remove questions from the quiz review page

Remove questions from the quiz review page

by moodle learner -
Number of replies: 3

Hi all,

i am using moodle 2.6+.

i using online quiz for an offline test to students. now i can take the print of online quiz on firefox or google chrome as a question sheet. i want to use review page as answer key page, but the current review page contain 

 question +  answer. but i just want answers only. I want to remove complete questions from So that i can generate review page as an answer key for offline evaluation.  So i tried some code editings in some php files but nothing worth. Kindy help me to find out a good solution for this.

kindly find the attachment with this .

attachment  :quiz,jpg

Note: I tried the offlinequiz plugin. They do not support the short answer type. 





Attachment quiz.jpg
Average of ratings: -
In reply to moodle learner

Re: Remove questions from the quiz review page

by Dennis Mittei -

Hi,

Did you get the answer to this question? I need some help too?

In reply to moodle learner

Re: Remove questions from the quiz review page

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

The simplest way to do this is with some CSS. Something like

.que .formulation {
    display: none;
}

You can do this in the admin settings under Site administration > Appearance > Additional HTML

Average of ratings: Useful (1)
In reply to Tim Hunt

Re: Remove questions from the quiz review page

by Richard Oelmann -
Picture of Core developers Picture of Plugin developers Picture of Testers

Or in the customcss setting that the vast majority of  themes have now smile