Rmoving other subpanels from Contact detail view

Apologies as I am posting twice [ this one is seperate thread ]

I am using the latest SuiteCRM 7.0.1

Please advice also on removing the Contact detail view… I don’t want “Activities”, “History”, Leads, Direct Report subpanels.

Even in Calls details view… I am seeing two times the Contact Subpanel.

Also in Accounts details view " I see on Subpanel named “Member Organizations” which I don’t need.

Please can you advice on how to remove them.

Hello

You can do it using code just go to the backend

Modules/contacts/metadata/subpaneldefs.php

and you will see the code like this
‘bugs’ => array(
‘order’ => 90,
‘module’ => ‘Bugs’,
‘sort_order’ => ‘desc’,
‘sort_by’ => ‘bug_number’,
‘subpanel_name’ => ‘default’,
‘get_subpanel_data’ => ‘bugs’,
‘add_subpanel_data’ => ‘bug_id’,
‘title_key’ => ‘LBL_BUGS_SUBPANEL_TITLE’,
‘top_buttons’ => array(
array(‘widget_class’ => ‘SubPanelTopButtonQuickCreate’),
array(‘widget_class’ => ‘SubPanelTopSelectButton’, ‘mode’=>‘MultiSelect’)
),
),
Make this code uncomment and it will disable the subpanel

I went ahead with Admin -> Studio -> Disable subpanels … Just don’t want to play much with Code.

hello

you have to do it using code as you can not delete the relationships under Studio. deleting relationships will effect the files as this is core module , you just make it comment else ur wish

1 Like