How can i remove or hide these fields from Mass Update?
- Sync to Outlook®
- Opt out Primary Email
I add vardefs.php to \custom\Extension\modules\Contacts\Ext\Vardefs, but i could not find name of the these fields
<?php
$dictionary['Contact']['fields']['primary_address_city']['required'] = false;
$dictionary['Contact']['fields']['do_not_call']['massupdate'] = false;
$dictionary['Contact']['fields']['account_name']['massupdate'] = false;
$dictionary['Contact']['fields']['assigned_user_id']['massupdate'] = false;
$dictionary['Contact']['fields']['opportunity_role']['massupdate'] = false;
$dictionary['Contact']['fields']['report_to_name']['massupdate'] = false;
$dictionary['Contact']['fields']['portal_active']['massupdate'] = false;
$dictionary['Contact']['fields']['lead_source']['massupdate'] = false;
$dictionary['Contact']['fields']['portal_account_disabled']['massupdate'] = false;
$dictionary['Contact']['fields']['portal_user_type']['massupdate'] = false;
$dictionary['Contact']['fields']['prospect_list_name']['massupdate'] = true;
$dictionary['Contact']['fields']['optout_primary']['massupdate'] = false;
?>