Forum Discussion
CindyHolland
8 years agoCommunity Member
Skip the Into Page > Immediately Start Course
We are working with a large corporation that hosts the rise modules on their internal LMS system.
Here is an example of one of the assets we created.
http://dialectic.solutions/wp-content/uplo...
BillDane
Community Member
Here's my hack for a "web" export.
- open your exported site and click on the "Start Course" button and in the address bar, copy everything after index.htm and save it for later
- rename the exported index.html file to index_target.html
- create a new index.html file with only the bare necessities:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script>
location='index_target.html#/lessons/z2g1--QmkDuYmxI-yuMEc4BMbBwbJle6';
</script>
</head>
<body>
</body>
</html> - edit the javascript you just created to use the url string you copied earlier (keep the hashtag after ".html")
- Now open the index.htm file like you did before and the start screen is bypassed.
PradyRaja
3 years agoCommunity Member
Brilliant ! Thanks!