3

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.

Bhavin Nakrani
  • 442
  • 3
  • 12

2 Answers2

2

I found this solution

Just open below page:

Admin » Connector Settings » Enable Connectors

And move all modules to Disabled panel and Save.

Bhavin Nakrani
  • 442
  • 3
  • 12
  • You're right this is the way to go from within the UI. The solution I suggested is for an installable package. – pauel Feb 28 '17 at 11:16
1

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());
pauel
  • 908
  • 10
  • 26