Table of Contents - Removing Mode

Is there a way to keep the TOC from showing as Demo, Practice, etc.? I want the Table of Contents to show when the course is launched, which it does. But I really don’t want it to say Demo, Practice, etc. at the top. Is there a way to hide or remove just that top line?

image

Hi LindaB,

Please add following code to ActivePresenter > Project > Properties > Event:

var header = $(".ap-toc-header").get(0);
if (header){
    header.innerHTML = prez.variable("apProjectName");
}

Regards,

1 Like

Thank you so much. That is exactly what I was looking for.