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

孤者浪人 提交于 2019-12-23 16:00:34

问题


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.


回答1:


I found this solution

Just open below page:

Admin » Connector Settings » Enable Connectors

And move all modules to Disabled panel and Save.




回答2:


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());


来源:https://stackoverflow.com/questions/42221197/how-to-remove-or-hide-insideview-panel-from-lead-detail-view-in-sugarcrm-6-5

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!