This content has been marked as final.
Show 4 replies
-
Re: Pass Referrer Parameters Between Pages
Josh Hill Aug 25, 2016 10:49 AM (in response to 846ea29a16abf20ac60cc2ac8d5e9818b0300717)Sure. Please search for this on the community. It's been discussed several times. It requires js.
-
Re: Pass Referrer Parameters Between Pages
Grégoire Michel Aug 26, 2016 10:01 AM (in response to 846ea29a16abf20ac60cc2ac8d5e9818b0300717)1 of 1 people found this helpfulHi Jeniffer,
You'll need some JS and can do it 2 ways (at least):
- Append the UTM's to the follow-up link
- or store the UTMs in a cookie which can be read on the second page.
-Greg
-
Re: Pass Referrer Parameters Between Pages
b90e85d412ff4624f0048d551179f58967969387 Oct 11, 2016 9:30 PM (in response to 846ea29a16abf20ac60cc2ac8d5e9818b0300717)1 of 1 people found this helpfulhaving no javascript skills i did this...
- After the first form submission - create a landing page and a clickable button.
- The URL for the clickable button will have the landing page for the 2nd page.
- Within the URL for the second form you can embed tokens within the URL string, and as long as the second form can read the embedded parameters, the data will be pulled in from the first form.
-
Re: Pass Referrer Parameters Between Pages
846ea29a16abf20ac60cc2ac8d5e9818b0300717 Dec 6, 2016 8:12 AM (in response to b90e85d412ff4624f0048d551179f58967969387)Thanks Byron Fujikawa! This is what I ended up doing and it worked fine. I am working with a programmer now to do it Gregoire Michel way since it will probably save time.