Rename Big Blue Button (or Adobe Connect) back to Conferences after deployment on 8-4-21
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2021
01:27 PM
Here is the code snippet which we intend to use:
$(".conferences").html("Conferences");
Including this piece of code in Custom Java Script file by
(Admin privilage->Themes->upload->viewfile->open text editor->include the above line->save->back to Themes Editor->select the saved Java Script file->preview->save the theme-> done)
It is a System-Wide change, will affect the navigation bar for every course.
Just a FYI. Welcome any comment.
Best,
-Kim
Solved! Go to Solution.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2021
05:46 AM
Here is the final version that I used:
(function(){
const conferences = document.querySelector('#section-tabs .conferences');
if (conferences.title === "Disabled. Not visible to students") {
conferences.innerHTML = 'Conferences<i class="nav-icon icon-off" aria-hidden="true" role="presentation"></i></a>';
} else {
conferences.innerHTML = 'Conferences';
}
})();