Thank You Page Redirect Plugin

4 replies
Hey Warriors,

Was looking for a plugin or script that after optin, subscriber would be taken to a
a thank you page with a short message and then automatically redirected to any URL that I choose after a specified amount of time ie 5 seconds.

Does anyone know if this already exists for WP?

Looking forward to your responses

-Sahwn
#page #plugin #redirect
  • Profile picture of the author Delta90
    depending what you use for the optin. If it's a php script you could just put a
    header('Location: YOUR-URL'); at the end of the script.

    For the page that shows a message I would do something like this.
    Code:
    <script>
    function redirectTimer(){
    	       setInterval(function(){window.location = "NEW-URL-GOES-HERE"},5000);
    	}
    
    window.onload = redirectTimer;
    </script>
    Where your url goes where it says NEW-URL-GOES-HERE and after that is the time in milliseconds.
    {{ DiscussionBoard.errors[8641373].message }}
  • Profile picture of the author topnichewebsites
    If you just want one URL that you can change from time to time then you can use a meta refresh for that. If you want to send so many hits x to many URLs then you can use a script for that.

    The meta refresh would go in your thank you page.

    Let me know if you need more info than provided.
    Signature
    http://pixelcovers.com/ <- eBook add eCovers

    https://www.unicommercesolutions.com <- WordPress Websites and Maintenance
    {{ DiscussionBoard.errors[8641377].message }}
    • Profile picture of the author dbands
      Originally Posted by topnichewebsites View Post

      If you just want one URL that you can change from time to time then you can use a meta refresh for that. If you want to send so many hits x to many URLs then you can use a script for that.

      The meta refresh would go in your thank you page.

      Let me know if you need more info than provided.
      Would it be possible to obtain a copy of such a script. So that I can say send 20 to url X and send 5 to url K.
      {{ DiscussionBoard.errors[8821843].message }}
  • Profile picture of the author adwike
    You can search on wordpress.org I am sure you can find this plugin
    {{ DiscussionBoard.errors[8680121].message }}

Trending Topics