SOLVED

Re: Hiding forms for known visitors, but still requiring some fields

Go to solution
Jack_Wildt
Level 2

Hiding forms for known visitors, but still requiring some fields

Hi everyone, this is an extension of this question - Hiding forms for known visitors, but still requiring some fields.

I have embedded a second form into the custom HTML that show to know visitors on the first form. The problem is that progressive profiling is not working on this second form, it asks for every field. Is there some javascript that I can use to fill in the fields we already have for the visitor?

Thanks!

Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Hiding forms for known visitors, but still requiring some fields

Above the call to loadForm() in the embed code, insert this code:

mktoPreFillFields.filledFields = Object

  .keys(mktoPreFillFields)

  .filter(function(field){

    return mktoPreFillFields[field] != "null";

  });

View solution in original post

13 REPLIES 13
SanfordWhiteman
Level 10 - Community Moderator

Re: Hiding forms for known visitors, but still requiring some fields

What's your URL?

And do you mean Progressive Profiling or Pre-Fill (ProgPro doesn't "fill in" fields, it hides fields that either have a value or are greater than your ProgPro max displayed fields setting).

Jack_Wildt
Level 2

Re: Hiding forms for known visitors, but still requiring some fields

Jack_Wildt
Level 2

Re: Hiding forms for known visitors, but still requiring some fields

Progressive profiling. I only want it to show the field(s) we need to collect.

SanfordWhiteman
Level 10 - Community Moderator

Re: Hiding forms for known visitors, but still requiring some fields

Above the call to loadForm() in the embed code, insert this code:

mktoPreFillFields.filledFields = Object

  .keys(mktoPreFillFields)

  .filter(function(field){

    return mktoPreFillFields[field] != "null";

  });

Jack_Wildt
Level 2

Re: Hiding forms for known visitors, but still requiring some fields

This works great! Thank you very much Sanford.

SanfordWhiteman
Level 10 - Community Moderator

Re: Hiding forms for known visitors, but still requiring some fields

Cool, you actually caught an interesting bug/exceptional situation but not worth an official fix.

Jack_Wildt
Level 2

Re: Hiding forms for known visitors, but still requiring some fields

There is actually one hiccup in this, in that you can still submit the form even if the embedded form is missing a required field.

SanfordWhiteman
Level 10 - Community Moderator

Re: Hiding forms for known visitors, but still requiring some fields

That's not related to the ProgPro, though.

That's happening because you aren't showing the right Submit button for the embedded form (not sure why you did this).

Jack_Wildt
Level 2

Re: Hiding forms for known visitors, but still requiring some fields

Ah, gotcha. It is what they suggested in the previous thread. I am not sure how to fix having two buttons without hiding the second one.