• Resolved erexkiss

    (@erexkiss)


    Hey Plugin Devs,

    First of all thanks for the great plugin.

    I’m working with a contact form that only has 1 name field.

    I’m trying to connect it to Highrise, but the Highrise CRM Feed settings page requires me to associate both the First name and Last name to a form field, and I have the following issues with this:

    – I can associate the Name field to both First name and Last name, but in that case the recipient will get an email that starts with “Hi [First name] [First Name]”
    – I can’t just use the first name to connect with Highrise CRM Feed, as both First name and Last name are required to have an associated form field.

    Is here any way I can remove the requirement to associate the Last Name field to anything?

    I’m unfortunately not that flexible with Gravity Forms, I can’t just add an extra “Last Name” field to the form.

    Thanks!

    https://www.ads-software.com/plugins/gravity-forms-highrise-crm/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author B Hays

    (@benhays)

    That sounds doable. I’ll try and get a fix in place shortly. In the meantime, you can fix your plugin and remove the required attribute for the last name by modifying a line of code.

    On line 1427, of gravity-forms-highrise-crm.php, change this:

    $fields['name_last'] = array('name' => 'Last Name', 'required' => TRUE);

    to this:

    $fields['name_last'] = array('name' => 'Last Name');

    Plugin Author B Hays

    (@benhays)

    Version 2.2 of the plugin has just been added to the plugin repository. That version includes the ability to use just a single name input and not require last name. Also, you can choose whether you’d like the name to be split into first & last before being sent to Highrise.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Connecting plugin to Gravity Form with only 1 Name field’ is closed to new replies.