Hide "Enrichment" button

Hello!

I want to hide "Enrichment" cloud-looking icon from the account interface. Unfortunately, I see it impossible to do this using page wizard. What would be the best way to do that? Thanks in advance!

 

File attachments

Like

1 comments

Hi Mike,

I had the same need a few weeks back and solved it by replacing AccountPageV2 schema and removing 'EnrichmentButtonContainer' from the page. Basically all you need to do is replace the scheme(if you haven't yet), add the following piece of code:

define("AccountPageV2", [],
	function() {
		return {
			entitySchemaName: "Account",
			diff: /**SCHEMA_DIFF*/[
				{
					"operation": "remove",
					"name": "EnrichmentButtonContainer"
				}
			]/**SCHEMA_DIFF*/
		};
	});

And save it.

Show all comments