Best Answer

Disabling Checklists

  • 5 June 2023
  • 5 replies
  • 43 views

Userlevel 1

Hi everyone, just wondering if anyone has managed to find a way to disable the checklist feature in Docebo.  We’re not using it at the moment but may do in the future - however, we’d like to hide the feature in the manager functionality.

icon

Best answer by lrnlab 5 June 2023, 15:00

View original

5 replies

Userlevel 7
Badge +7

if you want to hide the tab, you’ll likely need to use CSS to do that...

Userlevel 1

Thanks, now wondering if anyone has any CSS code to hide :)?

 

 

if you want to hide the tab, you’ll likely need to use CSS to do that...

 

Userlevel 2
Badge

you can try this:

 

.mng-my-team .dcb-ui-tabs-horizontal-header-track dcb-ui-tabs-horizontal-header-item:nth-child(2) {display:none;}

Userlevel 7
Badge +3

you can try this:

 

.mng-my-team .dcb-ui-tabs-horizontal-header-track dcb-ui-tabs-horizontal-header-item:nth-child(2) {display:none;}

Be careful when using this, as it is a counting one of the menu children, if settings change/features change and the menu item shifts, you will be hiding the wrong tab without knowing it. Just be aware :)

Userlevel 1

Thanks for this, I have tried this but it doesnt seem to work in our system!  Thanks for the warning too :)

Reply