Show one question per page review.php

Show one question per page review.php

by Adrián G -
Number of replies: 1

Hi!

I'm trying to display one question per page on the review.php page of the quizzes and hide link show all. I have tried the following (I have taken it from an old post) I use moodle 3.8 but it doesn´t work and the page is left blank. Can somebody help me?


  1. at the top of review.php, just after $showall = optional_param(...) just add a new line $showall = false.
  2. in attemptlib.php, right at the end, in render_end_bits change
    if ($this->attemptobj->get_num_pages() > 1) {
    to something like
    if (false && $this->attemptobj->get_num_pages() > 1) {

Average of ratings: -
In reply to Adrián G

Re: Show one question per page review.php

by Adrián G -
Silly mistake, I forgot to put ";" at the end: $showall = false;

Works perfect, thanks Tim