SOLVED

Kiosk form?

Go to solution
Anonymous
Not applicable
Is there a way to create a kiosk form in Marketo?

I want to create a form where the form fillout does not result in a cookie or trackable link.

For example, I want to create an internal form for our Sales Reps to use when someone responds to a particular email. They can fill out the form with the prospects email address and automatically have them dropped into a campaign. Normally I would do something like this in Salesforce, but these are for leads that we aren't pushing into Salesforce until they get to a certain point.
Tags (1)
1 ACCEPTED SOLUTION
Jep_Castelein2
Level 10
remove the following line from your page template to NOT load the munchkin code: 
<?php echo $mContext['endElements']; ?>

For those who want to know the details: 
- the munchkin code will place a cookie on the visitor's web browser with a unique identifier (if that cookie does not yet exist)
- the munchkin code will put the cookie id into the hidden form field _mkt_trk (you cannot see this with 'view source', you'll need to use Firebug)
- during the form submit, the Cookie ID will be associated with the new email address

This process will still happen when you disable prefilling via the Landing Page's "Edit Form Settings" option. It will simply not pre-fill, but it will still pass on the cookie ID to the most recently registered email address. 

Hope that clarifies. 
Jep

View solution in original post

21 REPLIES 21
Anonymous
Not applicable
Yes, I did this for a client so their reps could input trade show leads.

1. create a blank or basic page
2. create the form with the fields you want them to do.
3. use these instructions to disable pre-fill https://community.marketo.com/MarketoArticle?id=kA050000000L3Ia
4. finalize page with form and Approve.

You may also want to set the Meta Tag to No Index, NoFollow so Google doesn't show this to the world.