1

I have a Wordpress website that has a Contact Form 7 web form on it.

I use the following code for the form:

<div class="h-form-in">
      [text* infusionsoft-FirstName class:form-control placeholder "First Name*"]
</div>
<div class="h-form-in">
      [email* infusionsoft-Email class:form-control placeholder "Email*"]
</div>
<div class="h-form-in">
      [tel* infusionsoft-Phone1 class:form-control placeholder "Mobile*"]
</div>
<div class="h-form-in">
      [select* option-state class:form-control "State*" "New South Wales" "Queensland" "South Australia" "Tasmania" "Victoria" "Western Australia"]
</div>
<div class="h-form-in text-center">
      [submit class:btn class:btn-sub "Submit"]
</div>

My InfusionSoft App Name and InfusionSoft API Key are correct and have been saved in Wordpress correctly.

When submitted the data is sent to the specified email address correctly but the data is not passed to Infusionsoft.

Please can someone suggest a fix or advise why this might not be working?

user1747021
  • 275
  • 1
  • 4
  • 11

1 Answers1

0

Infusionsoft have changed their syntax and I have found that the following works:

inf_field_Phone1

This would be used for the mobile number and any field in your form would just need the Infusionsoft ID at the end e.g. inf_field_xxxxx

user1747021
  • 275
  • 1
  • 4
  • 11