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.