This article is about your event website - for information about building your interactive (registration) site, please search for "interactive site".
You can use code to create a link from your Event Website's navigation bar directly to another site (for example, an exhibitor registration site).
In the event website builder, go to the Advanced tab (for the whole site).
2. Paste the following code [script] into the Pre </HEAD> Code section.
<script>
function redirect(href,newHref){
$(`a[href="${href}"]`).attr('href',newHref)
}
$(function(){
redirect(folder-name,'https://www.myredirect.com')
});
</script>
3. Next, go back to the Builder tab and open the page you want to redirect from, and look in that page's Advanced tab.
4. Copy the text exactly from the folder field.
5. Go back to where you added the script (in the Advanced tab for the whole event website) and paste the exact folder name into the folder-name component.
6. Then replace the "www.myredirect.com" component with the URL where you want to redirect people to.
7. Save.
If you would like the navigation item to only redirect when the user is on a particular page of your event website, repeat steps 2-7 for each page you want the redirect to work from.
This code is provided as a suggestion for your convenience. Please note our Support team can't give further web development assistance.