Best Answer

User Management: Hiding the 'Manage Users via CSV' Button" using CSS

  • 8 December 2023
  • 3 replies
  • 43 views

Hello Community,

We are trying to hide the option “Manage Users via CSV" using CSS for admin view using CSS?

Does anyone know or have CSS to hide this option on the User Management page? 

 

icon

Best answer by Bfarkas 21 December 2023, 18:15

View original

3 replies

Userlevel 7
Badge +5

Bump!  curious to know if anyone has been able to pinpoint how to hide this option? 

 

Userlevel 7
Badge +3

Thanks for bumping and the reference photo @Annarose.Peterson , always great to see what we are talking about to make sure its the same thing as I still went to 3 spots that it could apply to :)

Alright, so I took a quick look and here’s what I see to do it, but couple quick disclaimers:

  • Have not looked around the platform to see what else this impacts, but should be minimal.
  • This method uses the button’s tooltip value, so if Docebo changes this, it will stop working unless you update the tooltip value to match.
  • Personally, never a fan of hiding things this way, especially on administrator interfaces, prefer education/training/ramifications/accountability than hiding….just personal preferences though, understand the counter arguements.

and with that….hope this helps:

button[data-tooltip="Import & Manage"] {
display: none;
}

 

Userlevel 7
Badge +5

thank you @Bfarkas !

 

Reply