Home >
Technical & Creative Skills >
Programming, Servers & Scripts
Passing email address to offer page, Editing ripped landing page with ThriveArchitect (2)
05-30-2020 10:24 PM
#1
affguru (Member)
Passing email address to offer page, Editing ripped landing page with ThriveArchitect
Any recommendations on a solution to pass the name, email address collected on my lander to a form on the offer/checkout/webinar registration page so the visitors don’t need to fill in the same info again? so that I can reduce the abandoned checkout/signup...
If possible, how can I edit a ripped landing page in ThriveArchitect editor?
Any advice or pointer would be greatly appreciated!
05-30-2020 10:42 PM
#2
jeremie (Moderator)

Originally Posted by
affguru
Any recommendations on a solution to pass the name, email address collected on my lander to a form on the offer/checkout/webinar registration page so the visitors don’t need to fill in the same info again? so that I can reduce the abandoned checkout/signup...
1) You have to check first if the owner of the offer allows this. This is especially true if you are running offers in Europe, due to potential GDPR issues for you, and for the offer's owner.
2) It is
not easy to do anyway, if the offer's owner does not want to modify his page. Most of the time, both pages are not on the same domain, so you can not using Javascript as it is restricted. Sometimes, a POST request can work, but it is rare.
To be on the safe side, this method works, but is more complex:
- store the name / email into a database or text file
- run periodically another script (like every 5 minutes with a CRON), which is going to connect to your database, check if there are entries to submit
- if there are, the script will launch a Chrome Driver, which replicates the behaviour of a Chrome user, access the page, simulate filling the form and clicking on submit.
Home >
Technical & Creative Skills >
Programming, Servers & Scripts