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.

Theres no system setting for this unfortunately, and I just looked at a few spots where it appears to see if there are clean classes/id’s or something to do it with CSS and did not see a good approach to it.


Theres no system setting for this unfortunately, and I just looked at a few spots where it appears to see if there are clean classes/id’s or something to do it with CSS and did not see a good approach to it.

Thanks for this.  I am no CSS whiz so, I am asking my question based on limited knowledge. 

I see that the div “ui-card-button-actions ng-star-inserted” is for the 3 dots in the Course card and I can hide this using CSS.

Based on your review, do you believe that this div will be changed in other parts of the platform and therefore is “not clean”?

Or was your advice more directed to hiding one menu option, but not the entire menu itself?

Appreciate your help.


Theres no system setting for this unfortunately, and I just looked at a few spots where it appears to see if there are clean classes/id’s or something to do it with CSS and did not see a good approach to it.

Thanks for this.  I am no CSS whiz so, I am asking my question based on limited knowledge. 

I see that the div “ui-card-button-actions ng-star-inserted” is for the 3 dots in the Course card and I can hide this using CSS.

Based on your review, do you believe that this div will be changed in other parts of the platform and therefore is “not clean”?

Or was your advice more directed to hiding one menu option, but not the entire menu itself?

Appreciate your help.

I think Bfarkas is saying that it would impact other areas of the platform - and eliminate menus, not that one item. I suspect that using “nth child” css tags you might be able to restrict to just the one item. 
 

I’ve had a few such issues and was usually able to handle it by restricting the CSS changes to certain pages. Which pages are you trying to hide this item on? If you can limit your scope appropriately AND get lucky to some extent with how Docebo programmed those specific pages, your request may be doable. 


Theres no system setting for this unfortunately, and I just looked at a few spots where it appears to see if there are clean classes/id’s or something to do it with CSS and did not see a good approach to it.

Thanks for this.  I am no CSS whiz so, I am asking my question based on limited knowledge. 

I see that the div “ui-card-button-actions ng-star-inserted” is for the 3 dots in the Course card and I can hide this using CSS.

Based on your review, do you believe that this div will be changed in other parts of the platform and therefore is “not clean”?

Or was your advice more directed to hiding one menu option, but not the entire menu itself?

Appreciate your help.

I think Bfarkas is saying that it would impact other areas of the platform - and eliminate menus, not that one item. I suspect that using “nth child” css tags you might be able to restrict to just the one item. 
 

I’ve had a few such issues and was usually able to handle it by restricting the CSS changes to certain pages. Which pages are you trying to hide this item on? If you can limit your scope appropriately AND get lucky to some extent with how Docebo programmed those specific pages, your request may be doable. 

Thanks for the response, lrodman.

I’m not sure about the user who started this thread but, I want to hide the whole menu at every occurrence.  Fully agree on the nth child recommendation for menu items.

I can look around the platform to see if hiding, “ui-card-button-actions ng-star-inserted” affects anything else.  If you have any thoughts about where/what else this might affect, I would love to hear them.  :)


@cschmierer If removing the entire “3dot” button is an option, you can test this out:
 

/* hide 3 dot button on course cards in homepage view */
.ui-carousel-items-track .ui-ripple {
display: none;

}

/* hide 3 dot button on course cards in mycourses + catalog view */
.my-courses-and-learning-plans-content-wrapper .ui-card-wrapper .ui-ripple {
display: none;

}

This will remove the 3 dot menu from course cards on pages and in the “my courses” and “course catalog” views (do test on your side 😉


@cschmierer If removing the entire “3dot” button is an option, you can test this out:

This will remove the 3 dot menu from course cards on pages and in the “my courses” and “course catalog” views (do test on your side 😉

Thank you!  I was stumped and trying to work with the CSS for the ui-card-header-badges.  But that removes all the flags (Enrolled status, Instructor, etc.)

Your code solves issue of users marking the items Outdated in the first place.  We don’t use Playlists and no reason for our users to Hide items, so we are comfortable with hiding the dot options completely!  


@Allan I am interested in using the CSS you have above. I tried it out but it did not remove the 3 dots. See image below. Does this not work with the new course player maybe? Thank you in advance!

 


@Allan I am interested in using the CSS you have above. I tried it out but it did not remove the 3 dots. See image below. Does this not work with the new course player maybe? Thank you in advance!

 

@lsippell  I’ve not tested in the new course player - we haven’t deployed that yet. Waiting on some UX concerns get ironed out on the Docebo side.  There’s a huge amount of changes made under the hood for the NCP, so it’s possible there’s some adjustments or new entries needed for the CSS.


@Allan I am interested in using the CSS you have above. I tried it out but it did not remove the 3 dots. See image below. Does this not work with the new course player maybe? Thank you in advance!

 

@lsippell  I’ve not tested in the new course player - we haven’t deployed that yet. Waiting on some UX concerns get ironed out on the Docebo side.  There’s a huge amount of changes made under the hood for the NCP, so it’s possible there’s some adjustments or new entries needed for the CSS.

Yup, basically if you have any custom CSS going for the course player area, it most likely will be impacted, and with all the changes they are still fixing/pushing out, not really worth the struggle of figuring those out quite yet.


@Allan @Bfarkas Thank you both for the replies! This is great info. I will keep in mind that the CSS I’m interested in will need to probably wait until everything is ironed out regarding the new course player. 


Have there been any updates to the CSS with the new course player? It is so prominent and literally any user can mark a course outdated

 


This is crazy and a really silly thing to have in the platform with no mitigation.  We should be able to opt out of these kinds of things.  I have 80,000 registered users.  This Mark Outdated thing is really time consuming to try to manage.  I’ve got users that mark it “outdated” thinking that’s how they’re supposed to check off that they read it.  Sigh.  Things get marked outdated as soon as I post them.  Really, only certain roles should be able to decide and flag that something is outdated.  


@cschmierer If removing the entire “3dot” button is an option, you can test this out:
 

/* hide 3 dot button on course cards in homepage view */
.ui-carousel-items-track .ui-ripple {
display: none;

}

/* hide 3 dot button on course cards in mycourses + catalog view */
.my-courses-and-learning-plans-content-wrapper .ui-card-wrapper .ui-ripple {
display: none;

}

This will remove the 3 dot menu from course cards on pages and in the “my courses” and “course catalog” views (do test on your side 😉

I just tried these and wanted to add.

The first option likely works if you have the “Card” option listed, but if you have the widget displayed as a “list” instead, you need different code.  This seems to have worked.

/* hide 3 dot button on course list in homepage view */

.ui-list-item-wrapper .ui-ripple {

display: none;

}

 


@trose23 where do I put that CSS code? I went to Configure branding look and feel, and added it into the Custom Styles AND course player css fields but nothing is changing so i’m not sure what i’m doing wrong.


@trose23 where do I put that CSS code? I went to Configure branding look and feel, and added it into the Custom Styles AND course player css fields but nothing is changing so i’m not sure what i’m doing wrong.

The code is in the Custom Styles area of Configure Branding Look and Feel.

 

Keep in mind that the code I referenced is specifically for the List View courses widget that can be applied to pages.  This code is not for the New Course Player, and there is a different code that has to be used depending on if the widget display is Card or List.


has anyone found a way to remove this option only from the new course player? It’s quite annoying and not very useful.


@gstager sadly support is not helpful (only pointing the the ideas portal) and since has been an issue for years now, am wondering if you ever found a way to remove this...especially in the new player, it’s more prominent than ever...fingers crossed

 


Hmm…

This removed the three dot menu - only had the one option in there anyway for me.

No point having an empty menu so I cleared the whole thing.

/** Remove Mark as Outdated Menu **/

div.lrn-widget-course-header-slot:nth-child(2) {
display: none;
}

/** End Remove Mark as Outdated Menu **/

I admit that I am struggling to achieve the same view as you have above.

As such - not sure I can investigate that until I do.

Perhaps we are displaying our things differently as a whole.

At any rate - please test as always to ensure this does not adversely affect other parts of your platform.


@gstager I believe the screen capture @lrnlab provided is the course overview page and is an option in the player settings. We would like to use this because it makes the course description more prominent but don’t want to call attention to the “add to playlist” or “mark as outdated”. I’m unable to find the correct CSS to hide these.

 


I had some success hiding on a course however this button and other spots it appears in in a menu that grows depending on the course settings and options so while I could find the code to remove from a specific course, when either listed other courses, it reappeared. + the dropdown option when in the course content (under the 3 dot menu) it yet another challenge…

Here’s what I used on the overview page so if you find a better way to hide this for all courses, please let me know…the last one dissent seem to do anything...

 

* Hide Mark as Outdated - New Course Player - Overview Page */

button"aria-label="Mark as outdated"] {

display: none;

}

 

/* Hide Mark as Outdated - New Course Player - in Course dropdown */

#dcb-ui-menu-0-2 {

display: none;

}

 

/* Hide Mark as Outdated - Course Cards - My Courses */

div.dcb-ui-list-item-wrapperearia-disabled="true"] {

pointer-events: none;

opacity: 0.5;

cursor: not-allowed;

}


Thanks for helping find that. I was not using that at all so did need to turn it on.

You could play with these - kinda ugly - I know…

For the individual thing - you might need to adjust the number value for the nth-child depending on how many items you have on that bar.
Not sure how it affects other courses. Do test...

/** Begin Remove only the Mark as Outdated **/

#doc-layout-page-content > lrn-content-overview > lrn-widget-content-overview-header > dcb-te-content-overview-header > section > div > div > div.dcb-te-content-overview-header-action-buttons.ng-star-inserted > dcb-ui-button-outlined:nth-child(3) {
display: none;
}

/** End Remove only the Mark as Outdated **/

/** Begin Remove entire Mark as Outdated Bar **/

#doc-layout-page-content > lrn-content-overview > lrn-widget-content-overview-header > dcb-te-content-overview-header > section > div > div > div.dcb-te-content-overview-header-action-buttons.ng-star-inserted {
display: none;
}

/** Begin Remove entire Mark as Outdated Bar **/

 


@lrnlab brilliant! Thanks for the assist. The following got us what we needed for the overview page.

 

/* Hide Mark as Outdated - New Course Player - Overview Page */

buttonoaria-label="Mark as outdated"] {

display: none;

}

/* Hide Add to playlist - New Course Player - Overview Page */

buttonoaria-label="Add to playlist"] {

display: none;

}


@gstager thx I’ll try it out


@mikeller please make sure to test all your course types and variations as I noted , this did not work across the board...


Reply