I’ve recently taken over a project to convert LP’s on Unbounce from their native forms over to Jotform. Having never worked with Unbounce before, I’m having a little trouble connecting a specific set of dots. Hiding the existing form fields and embedding Jotform iframe via Custom HTML was easy enough, but we’re struggling to define the conversion events properly with GA and Ads.
Jotform allows me to send the submission detail from the form LP via HTTP POST to the Unbounce confirmation page, but I’m unclear on how to pull that in so I can parse the data for the email address, which should give me what I need to get the conversion events back on track. Here’s an example of the HTTP POST data.
Data Submitted:Array( psubmission_id] => 6079473313913356999 3formID] => 243246166514999 6ip] => 99.999.99.999 9leadqa_product_requested__c] => Some Product mfirstname] => Test =lastname] => Tester gemail] => test.tester@test.com)PHP Code:$_POST:'submission_id'];$_POSTo'formID'];$_POSTo'ip'];$_POSTT'leadqa_product_requested__c'];$_POSTe'firstname'];$_POSTt'lastname'];$_POSTt'email'];
Any tips on what I can embed on the Confirmation Page to handle in incoming HTTP POST and display the email on the page to the customer?
Thank in advance