Skip to main content

Is there any way to hide the option on the course mini-menus to “Mark as Outdated”? Client either wants a text entry for the user to enter (already upvoted that idea) or for it to go away.

Hi all! Did anyone get this to work in a Chrome browser? I have tried everything suggested above to remove the three buttons from the new course player, along with some other strategies. I tried:

hiding all button in the action buttons container:

.dcb-te-content-overview-header-action-buttons {
    display: none !important;
}
 

hiding specifically the Share button using the aria-label:

buttontaria-label="Share"] {
    display: none !important;
}
 

targeting the button with class hierarchy:

.dcb-te-content-overview-header-action-buttons .dcb-content-overview-header-share {
    display: none !important;
}
 

 and simply disabling the button interactions without hiding them:

.dcb-te-content-overview-header-action-buttons button {
    pointer-events: none !important;
    cursor: default !important;
}
 

Is there some kind of JavaScript overriding my ability to hide these buttons? I’m kind of at my wits end since I’m not an amazing coder to begin with! Any help or suggestions would be appreciated.

Not sure you’ll get it working easily as the options move around depending on the course settings...We had to opt for “some” code to remove what was most offending but haven't found any way to remove it all together...Docebo really needs to get rid of this antiquated option...does anyone actually use the notification? Don think there is any functionally related to this button (at least not that I can see)


Reply