Force Course Description Display

Force Course Description Display

by Art Lader -
Number of replies: 2
I know I have seen this before but cannot seem to find it in the forums or docs:  How can I force the display of course descriptions, even in course categories with large numbers of courses?

Can someone point me in the right direction? Is it one of the variables below?

Thanks,
Art

Attachment variables.gif
Average of ratings: -
In reply to Art Lader

Re: Force Course Description Display

by Helen Foster -
Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers Picture of Translators
Hi Art,

Were you looking for Mike's post in the view course categories and courses discussion?
In reply to Helen Foster

Re: Force Course Description Display

by Geoffrey Rowland -
Picture of Plugin developers

Helen

Thanks for this link, as it has also helped us to 'force' the Course Description display.

In our system, increasing COURSE_MAX_SUMMARIES_PER_PAGE from 10 to 25 in /course/lib.php did the trick i.e.

    //define('COURSE_MAX_SUMMARIES_PER_PAGE', 10); // courses

  define('COURSE_MAX_SUMMARIES_PER_PAGE', 25); // courses

Cheers

Geoff