You can rename menu items. For instance, instead of Achievements, you can change it to Learning History or Transcripts.
To change the Achievements tab to desired text, you can use JavaScript. As an example, the following JavaScript can be pasted under Account settings>> Theme >> Custom JavaScript.
Please ensure Custom Javascript is enabled.
If you do not see the option to use custom JavaScript in your theme, you will need to ask us, or your account manager to turn this on for you, for which there may be an additional charge depending on your account.
Vertical Navigation:
<script type="text/javascript"> $(document).ready(function () { $('#courserecentach > span').text('History') }) </script> <script type="text/javascript"> $(document).ready(function () { $('#navtip_achievements > span').text('History') }) </script> <script type="text/javascript"> $(document).ready(function () { $('#achievementsWrapper > h2').text('History') }) </script> <script type="text/javascript"> $(document).ready(function () { $('#learner-dashboard-sidebar > h2').text('History') }) </script>
Horizontal View:
<script type="text/javascript"> $(document).ready(function () { $('#nav_sessions').text('Live Events and Webinars') }) </script>