Jump to content

Change Header Logo URL, v.8


Recommended Posts

Just the header logo link, not the home breadcrumb link.

There are several posts referring to a simple change in the header.tpl, but that must be for an earlier version of PS—there is no href in 8.2.3.

Link to comment
Share on other sites

Solved it in a custom.js

 

document.addEventListener('DOMContentLoaded', function() {
    var logoLink = document.querySelector('#_desktop_logo a');
    if (logoLink) {
        logoLink.href = 'https://mydomain.com';
    }
});

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...