Hi Guys,
I have a question regarding automated redirect link after the visitors receive a thank you page when they fill out a form.
Is it possible to redirect the visitors to a certain page after they receive a thank you page when they filled out a form? If yes, how and where?
I appreciate it very much if someone can shed a light on this! 🙂
Thanks in advance!
regards,
Hasina
Hi Hasina,
There are at least 2 possibilities:
1/ Open the thank you page and edit it. Click the "Landing page Actions" -> "Edit page meta tags". In the Custom Head Html, insert the following code:
<TITLE>Page Tittle if any</TITLE>
<META HTTP-EQUIV="refresh" CONTENT="30;URL=[URL of your second landing page here]">
You can set any duration instead of "30"
2/ Add a short JS script to the page (which is not easy to do if you are using a Guided LP):
setTimeout(document.location.assign.bind(document.location,'[URL of your second landing page here]'), 2000);
The number 2000 is in milliseconds, so 2000 = 2s
Thanks
2/ Add a short JS script to the page (which is not easy to do if you are using a Guided LP):
If editing the <HEAD> is the alternative, it's just as easy to add a <SCRIPT> to the <HEAD>....
Hi Sanford,
Will adding the the script to the "Landing page Actions" -> "Edit page meta tags" -> ""Custom Head Html" work ?
-Greg
Sure, <SCRIPT> in <HEAD> is perfectly fine. Not where you'd want to do a lot of heavy coding due to the size of the text area, of course...
This isn't a very "modern" user experience. Why not display Thank You HTML within the landing page (instead of loading a whole new page) and then redirect them after 30s? Also, always tell people they're about to be redirected, and give people a link they can click to bypass the timeout. It's the friendly thing to do.