Forum Discussion
Hide Course Menu on first page?
- 2 years ago
Good news, everyone! We've just released a new feature that allows you to turn off the cover page when you publish for LMS to improve compatibility, streamline training, and get learners into content faster. Give it a try, and let us know if you have any questions about it!
Note: You can't hide the cover page for training created from Next Big Idea Club content templates.
Good day. This worked, however do you know if it is possible to adjust the code further to remove the whole page altogether, just going right to the first page of the course? Thanks!
Hey Jeff, to bypass the bootup page and go directly to any page in your course, do the following:
- Unzip your extracted files into a new folder
- Open scormcontent/index.html in a browser
- The end of the url will probably look like index.html#/
- Click on "Start Course" (or any of the lessons)
- Notice that the url has changed and has more stuff after index.html#/
- Copy that text (i.e., index.html#/lessons/ABC123)
- Open scormcontent/index.html in Notepad or some other text editor
- At the very bottom (before </body>), add this code and replace my example with your stuff.
<script>
function skip_first_page() {
window.location.href = "#/lessons/ABC123";
}
setTimeout("skip_first_page()", 100);
</script>
- JeffForrer3 years agoCommunity Member
Thanks a lot for all of the details Jay, I will give it a try. Thanks.
- santhoshsanthu3 years agoCommunity Member
Hey Jay, any code that can remove certain lessons from the TOC? I wanted to remove the Quiz block lessons from the TOC so that learners don't jump to any quiz directly.
- JoanneShipman-53 years agoCommunity Member
Worked like a dream, thank you for sharing this javascript ;)