Hi there,
Question:
How to pre-populate the form with choice selected from email?
The simplest way to do achieve this is by linking each star to different landing page.
Each landing page will have Hidden Field for chosen Survey Score field.
But this will quickly become cumbersome to create and maintain; I have to create 15 landing pages, and much more as the scale increases.
Solved! Go to Solution.
- At Email, each star will have certain parameter embedded (to their destination URL?)
- At Landing page, a script will take that parameter (from the URL?) to pre-fill the radio button
Any resources that you can point to sending and receiving these parameters?
There's nothing special here. It's standard Form Editor Hidden field Auto-Fill functionality, fill from query param.
You haven't explained how you're visualizing the "stars" in the first place. That is, there's no direct support for <input type=star-rating> on forms. You'd have to simulate it using radio buttons or a range with custom CSS.
So you might as well have the real stars count field (Score in Mkto presumably) be a hidden field mapped from the query param. The visible star widget mirrors that value.
Sanford Whiteman
Thanks for the reply!
Yeah I figured that I will need custom CSS for star rating.
We altered the radio button with CSS before, so I think it will not be a big problem
As for the main question:
I take that you are suggesting is
Any resources that you can point to sending and receiving these parameters?
Thanks,
Eben
- At Email, each star will have certain parameter embedded (to their destination URL?)
- At Landing page, a script will take that parameter (from the URL?) to pre-fill the radio button
Any resources that you can point to sending and receiving these parameters?
There's nothing special here. It's standard Form Editor Hidden field Auto-Fill functionality, fill from query param.
Thanks as always Sanford!
I am going to try implementing the Parameter to the email.
As far as I know, I need only to put ?Field=value to the last part of my email
And at the form side, the auto-fill option will extract from that field name
Once I am successful I will report here
Thanks Sanford, it works as prescribed.
In my case, I use Referrer Parameter instead of URL Parameter
Now I need to somehow connect the visible star button to the stored value, but that is for different case.
Thanks as always!
Glad it's working, but this shouldn't have been the case:
In my case, I use Referrer Parameter instead of URL Parameter
If the parameter is in the URL of the page that hosts the form, that's a URL parameter. You said (or implied) you were linking directly from an email link to the form page. That wouldn't be the referrer.
That's my first intuition too, but when I test using URL Parameter, the form doesn't pass any value
But when I use Referral Parameter, I tried twice using different value, and it updates accordingly on the backend
Doesn't make sense. Please provide the link to the page with the form.
Here is the landing Page
https://pages.lifemark.ca/TestSurvey.html
From the test email, I put some parameter at the end
https://pages.lifemark.ca/TestSurvey.html?SurveyScore=1
At the Landing page I use the following configuration