-
Posts
22 -
Joined
-
Last visited
Community Answers
-
Matthew26's post in Different Site Logo Link on Member Pages was marked as the answer
Spoke too soon! I managed with this code in the footer:
<script>
var url = window.location.href;
var headerLogoLink = document.querySelector('.header-title-logo a');
if(url.indexOf("/put-page-here") !== -1){
headerLogoLink.setAttribute('href', "https://www.yoursitehere.com");
}
else {
headerLogoLink.setAttribute('href', "https://www.yoursitehere.com/home");
}
</script>