Celebrate Excellence in Education: Nominate Outstanding Educators by April 15!
Hi All,
New to the Canvas Community.
Have had a request to disable students ability to nickname their courses. Found an old post from 2018 but wondered if anyone has done anything with this?
Regards
Marc
Canvas Administrator
ICT Leader
Solved! Go to Solution.
You will need to have access to upload Custom CSS file (E.g. Root admin account), have a look at this article https://community.canvaslms.com/t5/Admin-Guide/How-do-I-upload-custom-JavaScript-and-CSS-files-to-an...
The following CSS will hide the "3-dot" button which allows students to set course's nickname
.ic-DashboardCard__header-button {
position: absolute;
top: 12px;
right: 12px;
width: 36px;
height: 36px;
border-radius: 50%;
visibility: hidden;
}
However, students can still disable the custom CSS from their browser.
Hello there, @marcvallance ...
To my knowledge, there is not a way to remove the ability to use course nicknames. You may have already seen this discussion topic, but if not, I'll post it for you and others:
Removing the Ability to Add Nicknames on Course Ca... - Instructure Community
Sorry that I don't have better news for you, but I hope this has helped to answer your question.
You will need to have access to upload Custom CSS file (E.g. Root admin account), have a look at this article https://community.canvaslms.com/t5/Admin-Guide/How-do-I-upload-custom-JavaScript-and-CSS-files-to-an...
The following CSS will hide the "3-dot" button which allows students to set course's nickname
.ic-DashboardCard__header-button {
position: absolute;
top: 12px;
right: 12px;
width: 36px;
height: 36px;
border-radius: 50%;
visibility: hidden;
}
However, students can still disable the custom CSS from their browser.
Here's a little JS hack I just cobbled together, in case you don't want to hide the entire block that lets them change card colors as well. Throwing it up here in hopes that it will help, and others will improve it.
Did you create the JS file in Notepad? I cannot seem to get Canvas Theme to accept that script. Thank you for any advice you can offer!
Hello,
Is this something I can copy and paste directly into my JS file to then be uploaded to the theme builder in my Canvas account? Thanks for any information you might have.
Reggie
To participate in the Instructure Community, you need to sign up or log in:
Sign In
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.