Feature Requests

Got an idea for a new feature or integration? We’d love to hear it! You can find our roadmap here.

4 votes

Save gravity form field to more than one CRM field.

We need a way to save a gravity form field submitted to more than one field in our CRM. At the moment we can only save a gravity form field to 1 CRM field.

Completed Category: CRM Integrations Nicolaos shared this idea Updated: September 6, 2025

4 thoughts on “Save gravity form field to more than one CRM field.

  1. Jack Arturo says:

    Hmm that’s tricky. We’d need to change the field mapping UI so you can add new custom form field mappings at the bottom. It’s possible but a fair bit of work.

    GravityWiz has an addon that can copy field values from one field to another: https://gravitywiz.com/documentation/gravity-forms-copy-cat/ . You could create a hidden field on the form, copy Field A to Hidden Field B, and then map that separately?

    Another option is the wpf_forms_pre_submission filter: https://wpfusion.com/documentation/filters/wpf_forms_pre_submission/

    You could use that to say

    $update_data[‘FieldB’] = $update_data[‘FieldA’];

    and this would send the same value to both fields in your CRM (using their API field IDs).

  2. Nicolaos says:

    That would be super helpful if it was in WPfusion! Much needed tbh.

  3. Jack Arturo says:

    This is supported now with our new Gravity Forms Field Mapping UI as of v3.45.8.

    https://wpfusion.com/documentation/lead-generation/gravity-forms/#feed-settings

  4. Nicolaos says:

    Wow, thats amazing!! Thanks Jack, thats going to make things much easier for use cases.

Leave a Comment

Your email address will not be published. Required fields are marked *