Best Answer

Hiding My Team - Users-Certifications report with CSS

  • 13 January 2023
  • 3 replies
  • 56 views

Hi team -

We are rolling the My Team feature out to thousands of users. The problem is, under Reports, we have no need for the Users - Certifications report and would consider it confusing because our certifications are not provided by Docebo but are actual proctored exams issued by another vendor. Therefore, we want to hide it! Is this possible via CSS? 

icon

Best answer by dklinger 16 January 2023, 23:00

View original

3 replies

Userlevel 7
Badge +6

It is - you need to adjust the css and essentially count up the rows in the listing….but here is the css to do so. We also hide certifications….so this should do the trick.

 

/*Hide Activities That We Dont Want To Show In User Profile*/
.myactivities-sidebar > .sidebarred > .sidebar ul li:nth-child(6),
.myactivities-sidebar > .sidebarred > .sidebar ul li:nth-child(8),
.myactivities-sidebar > .sidebarred > .sidebar ul li:nth-child(9)
{display:none !important;}

 

 

Userlevel 7
Badge +6

It is - you need to adjust the css and essentially count up the rows in the listing….but here is the css to do so. We also hide certifications….so this should do the trick.

 

/*Hide Activities That We Dont Want To Show In User Profile*/
.myactivities-sidebar > .sidebarred > .sidebar ul li:nth-child(6),
.myactivities-sidebar > .sidebarred > .sidebar ul li:nth-child(8),
.myactivities-sidebar > .sidebarred > .sidebar ul li:nth-child(9)
{display:none !important;}

 

 

 

Oops - nope - this is not true. Current state you cant hide those reports is my understanding. This is for hiding activities in the user profile.

Darn! Thanks for the reply and the snippet, nonetheless. 

Reply