Solution: How to delete the goodbye page in Totara LMS while using articulate Rise 360 and redirect to coursepage

Mar 10, 2023

Good afternoon,

I am using Rise 360 to create courses. However, I do not want the goodbye page to be displayed. My courses are used by 3,500 employees and I get a lot of comments on this annoying page. Is there any way to disable this page by default?

Solution:

Open the goodbye.html file located in the .zip file (scormdriver folder) with notepad (without unzipping!), delete all the existing code and add the code below:

<!DOCTYPE html>
<html>
<head>
<title>Redirect</title>
</head>
<body>
<script>
top.location.href = 'https://your-link-here.com';
</script>
</body>
</html>

This will redirect the whole page (not just the frame) to a specific location (for instance the coursepage). I use it to redirect to the coursepage but you can also redirect to home or to the catalogue. After editing the goodbye.html, save the document and update the file in the .zip 

11 Replies
Patrick Kroezen

Hi everybody,

Thank you for your response. I use Totara as LMS and it indeed requires the goodbye.html file. With trial and error i've found the solution:

I have edited the file with wordpad and implemented this code:

<!DOCTYPE html>
<html>
<head>
<title>Redirect</title>
</head>
<body>
<script>
top.location.href = 'https://your-link-here.com';
</script>
</body>
</html>

This code can be used to redirect to the coursepage instead of just showing the close notification.