Forum Discussion
Remove the Start Course Button in Rise?
- 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.
To skip the front page and go straight to the first lesson, try this:
add this code in the index.html at the bottom before the </body> tag after exporting the Rise content.
<script>
window.onload = function() {
if(window.location.href.indexOf("lessons") == -1) {
window.location.href = "#/lessons/1iSUIcTB6jep5DMQXmMLW7kNEzVOmzsD";
}
}
</script>
Replace the "#/lessons/1iSUIcTB6jep5DMQXmMLW7kNEzVOmzsD" part with your URL to the lesson you want to go.