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:
|