CRM

OwenLim
Member

Inconsistent Missing Data from Non-Hubspot Forms

SOLVE

I am using non-hubspot forms on my website, and leads are captures correctly in wordpress, so the forms are working correctly.

However, most leads, when transferred to hubspot, have missing info like phone numbers or other fields, it works once in awhile, but not everytime. This is happening to all forms from my website, not just a specific form. I have tried making a new form to no avail. 

Please let me know if there something I can do resolve this. Thanks

0 Upvotes
1 Accepted solution
karstenkoehler
Solution
Hall of Famer | Partner
Hall of Famer | Partner

Inconsistent Missing Data from Non-Hubspot Forms

SOLVE

Hi @OwenLim,

 

For non-HubSpot forms, certain mapping rules apply. Could you review these and check if they're consistent with what you're experiencing? https://knowledge.hubspot.com/forms/use-non-hubspot-forms#mapping-non-hubspot-form-fields-and-hubspo...

 

For those records where values are missing, when you review the form submission, are you seeing an error message?

  1. Open the form
  2. Click into the submissions tab
  3. Hover your mouse over a submission and click to open the right sidebar

Best regards

Karsten Köhler
HubSpot Freelancer | RevOps & CRM Consultant | Community Hall of Famer

Beratungstermin mit Karsten vereinbaren

 

Did my post help answer your query? Help the community by marking it as a solution.

View solution in original post

0 Upvotes
4 Replies 4
Markestac
Participant | Gold Partner
Participant | Gold Partner

Inconsistent Missing Data from Non-Hubspot Forms

SOLVE
Hi @OwenLim 

For the non- HubSpot forms, to get the submission correctly there are proper mapping of non-HubSpot form fields to be done. Here are the steps that you can perform for mapping fields:-
  1. Go to Settings > Properties and review the properties that you're mapping from your forms.
  2. Ensure all relevant fields (name, email, phone number, etc.) have corresponding properties in HubSpot.

    Also, you can go through below KB for more information on how you can efficiently fetch data from non-HubSpot form in HubSpot.

    Thanks

    Did my post help answer your query? Help the community by marking it as a solution.

Talk to Our HubSpot Expert

Marketing Automation Agency | RevOps & CRM Consultant

Did my post help answer your query? Help the community by marking it as a solution.

0 Upvotes
OwenLim
Member

Inconsistent Missing Data from Non-Hubspot Forms

SOLVE

I created a new Phone Number property, as im using Hubspot free and the new property is Single-line text. how do i map this to my current forms and override the hubspot-created phone number property?

0 Upvotes
Markestac
Participant | Gold Partner
Participant | Gold Partner

Inconsistent Missing Data from Non-Hubspot Forms

SOLVE
If you want to map your custom field to HubSpot using JavaScript, you can leverage the HubSpot Tracking Code along with JavaScript Form Submission.

Steps:
  • Use the HubSpot tracking script (HubSpot's tracking code) on your site, which automatically tracks visitor data.
  • Attach your custom phone number field to the form submission event using JavaScript, and map it to HubSpot’s API for submission.

Sample Code:-hbspt.forms.create({
  portalId: "your-portal-id",
  formId: "your-form-id",
  onFormSubmit: function($form) {
    var customPhoneNumber = document.getElementById("custom-phone-field").value;  // Get value from your custom phone field    // Submit the form data to HubSpot
    hbspt.forms.submit({
      portalId: "your-portal-id",
      formId: "your-form-id",
      values: {
        "custom_phone_number": customPhoneNumber  // Map your custom field
      }
    });
  }
});

Talk to Our HubSpot Expert

Marketing Automation Agency | RevOps & CRM Consultant

Did my post help answer your query? Help the community by marking it as a solution.

0 Upvotes
karstenkoehler
Solution
Hall of Famer | Partner
Hall of Famer | Partner

Inconsistent Missing Data from Non-Hubspot Forms

SOLVE

Hi @OwenLim,

 

For non-HubSpot forms, certain mapping rules apply. Could you review these and check if they're consistent with what you're experiencing? https://knowledge.hubspot.com/forms/use-non-hubspot-forms#mapping-non-hubspot-form-fields-and-hubspo...

 

For those records where values are missing, when you review the form submission, are you seeing an error message?

  1. Open the form
  2. Click into the submissions tab
  3. Hover your mouse over a submission and click to open the right sidebar

Best regards

Karsten Köhler
HubSpot Freelancer | RevOps & CRM Consultant | Community Hall of Famer

Beratungstermin mit Karsten vereinbaren

 

Did my post help answer your query? Help the community by marking it as a solution.

0 Upvotes