SOLVED

Munchkin Disable

Go to solution
Harish_Gupta6
Level 8

Munchkin Disable

Hi,

I have created one landing page template and set the Munchkin tracking disable.

I created the landing page using the same template and loaded the form in the landing page using form api :

<script src="//app-xxx.com/js/forms2/js/forms2.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<form id="mktoForm_xxx"></form>
<script>// <![CDATA[
MktoForms2.loadForm("//app-xxxx", "xxx", xxx);
MktoForms2.whenReady(function (form) {
  form.onSuccess(function(){
  $("#ty").show();
  return false;
  })
})
// ]]></script>

But, each time when I am filling the form, Marketo is updating the existing record its not creating the new record in system. Can anyone explain what I am missing.

I have uncheck the Form Prefill for each field and even in the landing page "Edit form settings".

Thanks

Harish Gupta
Tags (2)
1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Munchkin Disable

It's not enough to disable Munchkin, because if you're using the same domain with this LP that you use for others then you'll be sharing the cookie across domains.  What you want is the referral form pattern. This blog post will show you how.

View solution in original post

3 REPLIES 3
SanfordWhiteman
Level 10 - Community Moderator

Re: Munchkin Disable

It's not enough to disable Munchkin, because if you're using the same domain with this LP that you use for others then you'll be sharing the cookie across domains.  What you want is the referral form pattern. This blog post will show you how.

Harish_Gupta6
Level 8

Re: Munchkin Disable

Thanks Sanford.

The post was really helpful.

Harish Gupta
SanfordWhiteman
Level 10 - Community Moderator

Re: Munchkin Disable

OK, pls mark my answer above Correct, thanks.