Hide direction field from Calls

Hi all.

I need to hide field ‘Direction’ from edit and view panel on Calls.
The field doesn’t seem that can be removed via Studio because there isn’t available there.

By the way there is in EditView panel BUT even you remove it it exists in the form !!!

Thank you in advance for any suggestion,

Ars
PS: SuiteCRM-7.3.1

Navigate to custom/modules/Calls/metadata/detailviewdefs.php and search for field named “direction”

array (
            'name' => 'direction',
            'customCode' => '{$fields.direction.options[$fields.direction.value]} {$fields.status.options[$fields.status.value]}',
            'label' => 'LBL_STATUS',
          ),

You can either remove the “{$fields.direction.options[$fields.direction.value]}” or remove the entire ‘customeCode’ part of it.

1 Like

Hi Arsalan,

It works !!!

Thank you very, very much for your help.

Regards,

Arsenios