Forum Discussion
Remove the Start Course Button in Rise?
Hi
Can I remove the Start Course Button and Details button on the Cover Page in Rise?
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.
Hi Kris,
That's a great question, and you certainly can remove the Start Course and Details buttons on the cover page in Rise!
I created a screencast on the process which can be viewed here. You might also find this article on customizing text labels handy.
I hope this helps, and let me know if you have any other questions!
- AngelChristianCommunity Member
Thank you so much Katie. I removed the Start button and managed to remove the Details button as well but then my course is embedded on a site and the learners cannot navigate through to the first lesson as they're unable to start the course. How can I get around this please?
- Patty-MaherCommunity Member
Does this still work? I tried it, but cannot get rid of the Details button. (I want to keep Start.)
- ManojKumar-9db7Community Member
So well explained. Thanks, Katie!
- ChrisCurryCommunity Member
Alternatively, you could do this:
- Launch "index.html" located in the "scormcontent" folder of your exported course
- Click the "Start Course" button
- Navigate to the lesson you want the course to start on. I'm just using the first lesson.
- Copy the part of the url AFTER "index.html#"
- Then open "indexAPI.html" located in the "scormdriver" folder
- Modify the line with your desired lesson ID as seen below:
to this: - Re-zip the file and it should launch straight into whatever lesson you wanted.
Note: This was from a Rise course Exported for SCORM 2004, 4th Edition. I don't know how much it will change with other export types, but I imagine not too much.
What I would like to know, is if there is a place where we can just grab those lesson IDs without launching the course. This process could be automated if we could easily find them. I'm assuming that Articulate has it coded to generate the lesson ID randomly (based on their own specifications) the first time the lesson is launched. Then that lesson ID is saved somewhere.
- LisaHarris-c9c6Community Member
Do you think this is possible if needing to publish to web?
- ChrisCurryCommunity Member
It does not appear that you can do the trick I showed above if you export for web. You could maybe export it for SCORM anyway and run it off your website or blog or wherever. Not sure if the course would throw any "visible" errors that would negatively impact the learner experience. You would just have to test it and see.
In the index files it generates, you can change which page is launched. Just note that the more you mess with the exported files, the more likely you are to break something. So, once again, just comes down to trial and error for what works for your situation.
- DonaldKernsCommunity Member
Building on my guide for removing "| Rise" from the title that appears in the browser tab (see https://community.articulate.com/discussions/rise/is-there-any-way-to-get-rid-of-rise-in-a-rise-course-s-output), I dug into the JS/CSS code and found solutions to:
- Remove [BEGIN] button;
- Remove [DETAILS] button;
- Remove Inverted caret/down chevron that appears to the right of the [DETAILS] button; and
- Add your favicon.ico (will appear in the browser tab).
Caveat (for those who are unfamiliar with digging into the coding):
For each course and after each course export from Rise, you must:
- Unzip the course ZIP file;
- Locate the applicable files, which may include:
Web Export:
\index.html
\lib\mainbundle.css
\lib\mainbundle.js
SCORM Export:
\content\index.html
\content\lib\mainbundle.css
\content\lib\mainbundle.js - Manually edit the applicable file(s) using a text editor;
- Save the updated file; and
- Re-ZIP the course files (may only be required for LMS deployment).
==============================
DEPENDING ON YOUR NEEDS, COMPLETE ONE OR MORE OF THE FOLLOWING TASKS:
A. To Remove the [BEGIN] Button
- Open index.html in a text editor;
- Search for "BEGIN";
RESULT:
"courseStart":"BEGIN"
- Delete BEGIN text, but leave the double quotes; and
- Save the file.
B. To Remove the [DETAILS] Button
- Open index.html in a text editor;
- Search for "DETAILS";
RESULT:
"courseDetails":"DETAILS"
- Delete DETAILS text, but leave the double quotes; and
- Save the file.
C. To Remove the White Inverted Caret/Down Chevron (part of the [Details] button)
- Open main.bundle.css in a text editor;
- Search for ā.overview__button,.overview__details-triggerā ;
RESULT:
.overview__button,.overview__details-trigger{display: inline-block;font-size: 1.2rem;font-weight: 800;line-height: 4rem;letter-spacing: .04em;text-decoration: none;text-transform: uppercase;
- Add "visibility:hidden;" property; and
RESULT:
.overview__button,.overview__details-trigger{visibility:hidden;display: inline-block;font-size: 1.2rem;font-weight: 800;line-height: 4rem;letter-spacing: .04em;text-decoration: none;text-transform: uppercase;
- Save the file.
D. To Add Your FAVICON.ICO to Your Course
Note: This assumes you already have one created and deployed on your web server - either in the root folder or in your CMS.- Open main.bundle.css in a text editor;
- Search for "favicon.ico"
RESULT:
favicon:"https://f.vimeocdn.com/images_v6/favicon.ico"
- Replace the path in double quotes with the path to your favicon.ico on your web server.
RESULT:
favicon:"https://mywebserver/favicon.ico"
If unsure, view the source code on your website's home page and copy the path to the favicon.ico) -- because Rise uses HTTPS, your path must include this in the path as well; - Repeat steps 2 and 3 as there are two identical favicon.ico entries that should be replaced; and
- Save the file.
NOTE: I cannot explain why, but the main.bundle.js contains two favicon.ico references to Vimeo's favicon.ico (along with references to a Smithsonian Museum). But I replaced both of these with our favicon.ico path and the course displayed with our favicon.ico in the browser tab.
Finally, your favicon.ico may not display in the browser tab if your course title is long and you may get different results depending on operating system, browser, number of tabs open, etc.
- KrisKern-StarkCommunity Member
Donald,
Thank you! But this is only if you are exporting, correct? I was just going to share it.
- ZsoltOlahSuper Hero
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.
Hi Megan!
It sounds like you want to host your Rise 360 course in a learning management system, and you want learners to skip the Main Menu page to go right into Lesson 1.
That's a popular request, and I'll add your vote! If we add this functionality in the future, we'll pop back in to let you know.
- AakshiMancha774Community Member
Hi there,
Can I start my course from the first page of the RISE course i.e. from the blocks. As my course has only one page and we don't really need menu or table of content. So when user will launch the link it should directly land to blocks instead of Start course page.
Thanks for the comments in advance!
- CoryWarshawsky-Community Member
Thanks Ashley. Just to clarify, I'm looking to skip that entire page, not just remove the bottom. Thanks for passing It along
Thanks, Cory for clarifying! So removing the introduction page entirely, and having the user start at the first lesson is what you'd like to see? I'll pass that feedback along to our product team.
- PattiCaswellCommunity Member
Hi, Ashley. Do you have any updates on this? We would also like to skip the entire cover page and start the course on the first lesson.
- MeganEtheridgeCommunity Member
Hi, Ashley,
Do you know if this is an option now? I'm looking to do the same as Cory mentioned above.
Hi Rethink,
If you're exporting and hosting in an LMS, my little trick won't work as it's based on how the web output is organized.
I know a few other folks have asked about removing the start course/main page, so we'll keep you posted here on that feature idea!
- StuartMarshall-Community Member
Hi Michael,
You can remove the little arrow / caret using css. Some instructions here: https://community.articulate.com/discussions/rise/remove-carrot-to-the-right-of-the-get-started-button-in-rise