LucieGbt1993 Posted May 2 Share Posted May 2 Hi, I'd like to be able to redirect my current promotional pop-up to a specific URL rather than a thank you message. How can I please do so ? Thanking you in advance, Lucie Link to comment
Solution Gregory3010 Posted May 2 Solution Share Posted May 2 Hi Lucie, I did it last week for my website. Enter below code to Post-Submit HTML. Just change the url link to yours "/your-url" <script> window.location.href = "/your-url"; </script> Ziggy 1 Link to comment
LucieGbt1993 Posted May 2 Author Share Posted May 2 Thanks very much for your help! Can we add a short delay before the redirection occurs? Thanks Link to comment
Shadmon Posted May 2 Share Posted May 2 Hi @LucieGbt1993 You can add this code instead : // 2000 milliseconds = 2 seconds -> You can change the number to delay. For example: 5000 will be 5 seconds. <script> setTimeout(function() { window.location.href = "/your-url"; }, 2000); </script> terih_okici79, yomoni_lume21, lawona_koca31 and 1 other 2 1 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment