Is there a way to disable Canvas's "Previous" and "Next" buttons?

Modified on Fri, 27 Aug, 2021 at 8:43 PM

Learners may find it confusing to see CourseArc's previous/next navigation and Canvas's previous/next navigation.


A CourseArc System Administrator can hide Canvas's previous/next navigation. From the Dashboard, select Tracking Code in the Settings dropdown.


Paste the following code at the end of the Tracking Code text box, then click the Submit button.

<!-- Hide Canvas next/prev --> 
<script>
$( document ).ready(function() {

 parent.postMessage(JSON.stringify({
      subject: "lti.showModuleNavigation",
      show: false
    }), "*");

});
</script>


Canvas will hide its previous/next navigation when CourseArc content is loaded.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article