How to disable bookmarking when launching from an LMS Follow
Sometimes customers want to stop the bookmarking feature which allows a user to return to the point they left off when relaunching a Gomo course from a Learning Management System (LMS).
A new configuration variable is now available in Gomo to do this. You can add it to the overrides.js file in the published project package.
Here's how:
- Publish your Gomo project as a SCORM package and download it
- Unzip the file
- Find the overrides.json file in the Data folder
- Open this file in an editor such as Notepad
- Add the following line into the "themeCustomisation" field:
var BOO_SHOW_LAST_LOCATION = false;
- If the "themeCustomisation" field is empty [ ] like the following;
{
"themeCustomisation": [],
"disabledMetaTopics": [....
- then add it here but change "themeCustomisation" to an object by converting [ ] to { }
{
"themeCustomisation": {
"BOO_SHOW_LAST_LOCATION": false
},
"disabledMetaTopics": [....
- If there’s already is something in "themeCustomisation" like below, then add a comma to the end of the last value and add the following
{
"themeCustomisation": {
"ExampleVar": "value",
"BOO_SHOW_LAST_LOCATION": false
},
"disabledMetaTopics": [....
- Save the file
- Rezip the contents of the folder (NOT the folder itself)
- Upload the zip file to your LMS
Comments
0 comments
Article is closed for comments.