Is it possible to remove the ability of user to export to excel?

My company is concerned about the ability of a user to export to csv.
I thought I had read that you can limit access to the gear icon on the org chart, but I don't see anywhere to do that.

Hi @Amys_Turtlgal,
you can hide any button in the Gear menu with a bit of CSS.
To hide the Export to CSV menu item, add the following to the Custom CSS tab in the Configuration Wizard:

.poch-export-csv-link {
  display: none !important;
}

To hide the whole Gear icon:

.poch-expanding-menu-item {
  display: none !important;
}
3 Likes

EXCELLENT!!! Thank you!