Quiz Marks

Quiz Marks

ໂດຍ Bruce Worthel -
ຈຳນວນການຕອບກັບ: 2

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

ການຈັດອັນດັບສະເລ່ຍ: -
ໃນການຕອບກັບຫາ 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.

ການຈັດອັນດັບສະເລ່ຍ: -