Redirecting Form Pages

In certain situations, your institution may want to redirect users. There are a few methods to enable this:

From a Confirmation Page to an External URL

To redirect users from a Slate-hosted confirmation page to an external URL.

1. Click Forms on the top navigation bar.

2. Select the form that should contain the redirect. The form summary page appears.

3. Click Edit Communications. The communications page appears.

4. Navigate to the confirmation page communication and click Edit Mailing

5. Click on Edit Message and within the popup, click Source. The source editor appears (with HTML displayed).

6. Add a browser redirect by entering one of the redirect codes within the <head> tags.

7. To redirect the browser immediately, without a delay:

<script>FW.Navigate('HTTP://WWW.YOUR-URL.COM');</script>

To redirect the browser after a specific delay (allowing the original page to briefly appear): <scripttype="text/javascript">/*<![CDATA[*/var delay = 5000; setTimeout(function(){ window.location = 'HTTP://WWW.YOUR-URL.COM'; }, delay);/*]]>*/</script>

8. Click OK.

9. Click Save.

 

To Another Page Upon Accessing Form

To redirect the user to another page upon first accessing the form:

  1. Click Forms on the top navigation bar.
  2. Select the form that should contain the redirect. The form summary page appears.
  3. Click Edit. The Edit Form popup appears.
  4. Click the Description tab.
  5. In the top ribbon, click Source. The source editor appears (with HTML displayed).
  6. Follow the same steps as above to add one of the two browser redirects.

Was this article helpful?
5 out of 7 found this helpful