Clicking your forum's logo sends the user to the forum home page by default. However, you may want to send the user to your website home page or a different page when they click your forum logo. You can change the web address (URL) that your forum address links to by following the instructions below:
- Log in to your Website Toolbox account.
- Click the Integrate link in the main menu.
- Click the Custom Code link.
- Insert the following code into the Forum Head Tag HTML Code textbox:
<script> document.addEventListener("DOMContentLoaded", function(event) { var logoURL = "URL HERE"; var wtbLogo = document.getElementById("logo_or_title"); if (wtbLogo) { wtbLogo.setAttribute("href", logoURL); wtbLogo.setAttribute("target", "_top"); } else { document.getElementById("forum_logo").addEventListener("click", function (e) { window.parent.location = logoURL; }); } }); </script> - Replace URL HERE with the web address (URL) that you would like to link to.
- Save your changes.