Bhavin Nakrani
Bhavin Nakrani

Reputation: 532

How to remove or hide InsideView panel from Lead detail view in SugarCRM 6.5?

In Lead detail view i can see community ads in "InsideView" panel Community Forum. I am currently on 6.5 community edition.

Is this possible to hide or remove?

Thanks.

Upvotes: 3

Views: 150

Answers (2)

Bhavin Nakrani
Bhavin Nakrani

Reputation: 532

I found this solution

Just open below page:

Admin » Connector Settings » Enable Connectors

And move all modules to Disabled panel and Save.

Upvotes: 2

pauel
pauel

Reputation: 906

Place this in a post_install routine:

require_once('include/connectors/utils/ConnectorUtils.php');
require_once('include/connectors/sources/SourceFactory.php');

ConnectorUtils::cleanMetaDataFile('Leads');

write_array_to_file('modules_sources', array(), CONNECTOR_DISPLAY_CONFIG_FILE);
write_array_to_file('searchdefs', array(), 'custom/modules/Connectors/metadata/searchdefs.php');

$s = SourceFactory::getSource('ext_rest_insideview');
$s->saveMappingHook(array());

Upvotes: 1

Related Questions