Posts made by Joseph Rézeau

Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers Picture of Translators
Hi!
In short answers, IMHO, wildcards are pretty useless because they might accept as correct an infinite number of wrong answers. That is why I have developed my own REGEXP question type. It's a pity that you cannot have plugins installed on your institutional Moodle site. Maybe one day...
Average of ratings: Useful (1)
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers Picture of Translators

A simple way to hide at the same time the Previous activity, the Jump To... and the Next activity links from all Quiz steps (attempt, summary and review) is as follows:

#page-mod-quiz-attempt .activity-navigation,
#page-mod-quiz-summary .activity-navigation,
#page-mod-quiz-review .activity-navigation {
    display: none;
}

PS.- There should really be a Quiz setting to choose to hide those distracting links without having to resort to CSS hacks or having to use the Safe Exam Browser.

Average of ratings: Useful (1)