Quiz Marks

Quiz Marks

Bruce Worthel發表於
Number of replies: 2

I don't want my students to know how many points a question is worth. How can I do this?

評比平均分數: -
In reply to Bruce Worthel

Re: Quiz Marks

Tim Hunt發表於
Core developers的相片 Documentation writers的相片 Particularly helpful Moodlers的相片 Peer reviewers的相片 Plugin developers的相片

You can't do that without hacking the code (or your theme).

In your theme, you should be able to add a style rule something like

.que .info .grade { display: none; }

(You may need to use firebug to get that exactly right.) Alternatively, in mod/quiz/locallib.php, find the line that says

        $options->marks = self::extract($quiz->reviewmarks, $when,
                self::MARK_AND_MAX, self::MAX_ONLY);

and replace MAX_ONLY with HIDDEN.

In reply to Tim Hunt

Re: Quiz Marks

Bruce Worthel發表於

Thanks Tim. I'm using 1.9.9+. I've been told that in the newest version of moodle it has been changed or is now an option.