Hi all,
This worked for me; quoting info from Sugar Community boards just in case it goes away (copying procedure from the aforementioned link:
Hi there,
- Go to your SuiteCRM installation folder
- Create a custom version of the convertion definitions: Copy modules/Leads/metadata/convertdefs.php to custom/modules/Leads/metadata/convertdefs.php
and make the following changes in the latter file
$viewdefs['Accounts']['ConvertLead'] = array(
'copyData' => true,
'required' => false,
by default it will be'required' => true
- You may also want to un-check the box by default with:
'default_action' => '',
in the same definitions array.
Hope this helps!