SOLVED

Incorrect Form Submission Page Attribution in Marketo

Go to solution
BrunoPacheco
Level 2

Incorrect Form Submission Page Attribution in Marketo

Hello,

I’d like to open a discussion regarding an issue we’ve encountered with the attribution of form submission pages. We utilize global forms for various campaigns, such as webinars and content downloads. To ensure proper attribution to the relevant program, we've implemented a referrer constraint based on the URL.

However, we’re seeing instances where a form is filled out, but the referring page doesn’t have an embedded form. Consequently, when the lead is passed to Marketo, it is not being attributed to any program. This seems to be a disconnect between the form submission action and the referrer page recognition.

Has anyone experienced a similar issue or does anyone know how to resolve this kind of bug? Any insights or suggestions on how to ensure accurate form submission attribution would be greatly appreciated.

 

Screenshot 2023-12-13 165337.png

 

3 ACCEPTED SOLUTIONS

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Incorrect Form Submission Page Attribution in Marketo

That page quite obviously has a Marketo form:

SanfordWhiteman_0-1702501132361.png

 

View solution in original post

SanfordWhiteman
Level 10 - Community Moderator

Re: Incorrect Form Submission Page Attribution in Marketo

Methinks the problem is just not realizing the page does have a form. 🙂

View solution in original post

SanfordWhiteman
Level 10 - Community Moderator

Re: Incorrect Form Submission Page Attribution in Marketo

It’s quite simple really. All of your pages potentially host all of your forms, because your site is an SPA. Whatever URL they land on is cached, as it’s the last full document to load, regardless of whether the location is history.replaceState()-d later. If you want to change this behavior you need to forcibly get a new copy of MktoForms2.

 

Also, your code (though minimized/packaged so extremely difficult to read) has a number of errors, including using setTimeout instead of properly waiting for MktoForms2.

View solution in original post

6 REPLIES 6
SanfordWhiteman
Level 10 - Community Moderator

Re: Incorrect Form Submission Page Attribution in Marketo

That page quite obviously has a Marketo form:

SanfordWhiteman_0-1702501132361.png

 

bart_borosky
Level 1

Re: Incorrect Form Submission Page Attribution in Marketo

for your content program, are you using the Fills Out Form trigger, with the constraints:
form name is any
referrer contains [your web page URL]

if not, maybe try that? 

SanfordWhiteman
Level 10 - Community Moderator

Re: Incorrect Form Submission Page Attribution in Marketo

Methinks the problem is just not realizing the page does have a form. 🙂

BrunoPacheco
Level 2

Re: Incorrect Form Submission Page Attribution in Marketo

Hi Sanford,

 

The form that triggered the conversion activity is not the same as the one indicated; you can verify this by checking the screenshot above.

BrunoPacheco
Level 2

Re: Incorrect Form Submission Page Attribution in Marketo

Another example

 

BrunoPacheco_0-1702647460497.png

 

SanfordWhiteman
Level 10 - Community Moderator

Re: Incorrect Form Submission Page Attribution in Marketo

It’s quite simple really. All of your pages potentially host all of your forms, because your site is an SPA. Whatever URL they land on is cached, as it’s the last full document to load, regardless of whether the location is history.replaceState()-d later. If you want to change this behavior you need to forcibly get a new copy of MktoForms2.

 

Also, your code (though minimized/packaged so extremely difficult to read) has a number of errors, including using setTimeout instead of properly waiting for MktoForms2.