Course Title on Certificate

Course Title on Certificate

by Brett Hallongren -
Number of replies: 2

I need three certificates in a course. Each needs to have a different Course Title (i.e. Part 1, Part 2, etc.) and have their own separate quiz dependencies.

For example Course 1 has three quizzes (Quiz 1, Quiz 2, Quiz 3). I need a Certificate for Quiz 1 once they have completed it that has a Course Title of Part 1, one for Quiz 2 that has a Course TItle of Part 2, etc.

I'm using Moodle 1.8.3 and I'm not a programmer but can usually stumble my way around in the code to find what I need.

Anyone have any ideas?

Thanks.

Average of ratings: -
In reply to Brett Hallongren

Re: Course Title on Certificate

by Chardelle Busch -
Picture of Core developers
The easiest way might be to create 3 custom certificate types called quiz1, quiz2 and quiz3. Then instead of printing the course title with this line:
cert_printtext(170, 330, 'C', 'Helvetica', '', 20, utf8_decode($classname));

change it to print a lang string that you add to the certificate lang/certificate.php file. See the documentation for more info on customization.