Is there a way to disable course nicknames?

Jump to solution
marcvallance
Community Member

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

0 Likes
1 Solution
jerry_nguyen
Community Contributor

@marcvallance 

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.

View solution in original post