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.

ශ්‍රේණිගත කිරීම්වල සාමාන්යය: -