1
vote
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.
Got an idea for a new feature or integration? We’d love to hear it! You can find our roadmap here.
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.
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).