Posts made by Joseph Rézeau

Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators
To display only the Next link on each page of a quiz set to "one question per page", you can hack the Moodle code. In Moodle 1.8.2, go to file moodle/mod/quiz/locallib.php, and comment out lines 217-230:
/*
echo '<span class="title">' . get_string('page') . ':</span>';
if ($page > 0) {
// Print previous link
$strprev = get_string('previous');
echo '<a href="javascript:navigate(' . ($page - 1) . ');" title="'
. $strprev . '">(' . $strprev . ')</a>';
}
for ($i = 0; $i < $pages; $i++) {
if ($i == $page) {
echo '<span class="thispage">'.($i+1).'</span>';
} else {
echo '<a href="javascript:navigate(' . ($i) . ');">'.($i+1).'</a>';
}
}
*/
See attached result.
However, I agree with you that this ought to be offered as a quiz setting, and I am surprised that it does not exist already. Anyone interested please vote for bug report MDL-11047.
Joseph
Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators
Martin > And if you have a ton of memory, Eclipse might even work!

Hum, I only have 1 Giga RAM on my home computer (Windows XP), which I think is fairly basic these days, and Eclipse works fine. I'm thankful to Tim H. for writing the documentation and glad I finally took the step to install Eclipse and use it...

Joseph

Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators
> Having problems with View by Response in questionnaire. I get the questionnaire rather than the results by person.

What do you mean by "I get the questionnaire ..." ? Could you attach a screen shot please?

Joseph