Forum Discussion
DouglasCuddihy-
5 years agoCommunity Member
Adding References to Certificate of Completions
Does anyone know how to add custom fields to a printable certificate of completion? I'd like the learner to enter the name of their company and location in two fields early on in the course (see att...
SamHill
3 years agoSuper Hero
Hi Kris, I think the attached should work for you. Let me know how you go. The change is in the function setUpPrint()
// *** Rename the quiz name using 'Section_{num}_Title' *** //
let $player = window.opener.GetPlayer();
for(let $quiznum = 0; $quiznum < quizzes.length; $quiznum++)
{
quizzes[$quiznum].strQuizName = $player.GetVar('Section_'+($quiznum + 1)+'_Title');
}