To disable required create account when converting a lead

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,

  1. Go to your SuiteCRM installation folder
  2. 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
  3. You may also want to un-check the box by default with:
    'default_action' => '',
    in the same definitions array.

Hope this helps!

2 Likes