Reputation: 532
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
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
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