- 03 Feb 2025
- 1 minute read
- Print
- DarkLight
- PDF
Redirecting Form Pages
- Updated 03 Feb 2025
- 1 minute read
- Print
- DarkLight
- PDF
In certain situations, your institution might want to redirect users from one Slate page to another. There are a few ways to do this:
Redirecting from a confirmation page to an external URL
To redirect users from a Slate-hosted confirmation page to an external URL:
From the main navigation, select Forms.
Select the form that should contain the redirect, or create a new one.
Select Edit Communications.
Select Edit Mailing for the confirmation page communication.
Select Edit Message.
Select Source in the editor’s top ribbon. The Source editor appears.
Enter one of the following redirect scripts immediately after the
<head>
tag in the form’s source content:
Redirect after a delay, displaying the original page for the length of time you specify:
<script type="text/javascript">var delay = 5000; setTimeout(function(){ window.location = 'HTTP://WWW.YOUR-URL.COM'; }, delay);</script>
Redirect immediately, with no delay:
<script type="text/javascript">var delay = 0; setTimeout(function(){ window.location = 'HTTP://WWW.YOUR-URL.COM'; }, delay);</script>
Select OK.
Select Save.
Redirecting to another page when accessing a form
To redirect the user to another page upon first accessing the form:
Click Forms on the Slate navigation bar. The Forms summary page appears.
Select the form that should contain the redirect. The summary page for the form appears.
Click Edit. An Edit Form popup appears.
Select the Description tab.
Click Source in the editor’s top ribbon. The Source editor appears (with HTML displayed).
Follow Steps 7-9 described above to add one of the two browser redirects.