Hello,
I'm trying to link the header logo to an external page, here is what I did:
I chose upload logo from URL and added the external URL to "<span style="color: #444444; font-family: 'Open Sans', sans-serif; font-size: 13px; font-weight: 600; line-height: 18.2px;">Link Image To</span><span style="line-height: 1.5;">". I repeated this process for logo, alternate logo and logo for modern theme, but the logo still points to the default home page.</span>
Since this didn't work, I added the following code snippet to child theme functions.php:
add_filter('home_logo_link_url', 'change_site_main_link');
function change_site_main_link($output) {
return 'https://mysite.com/';
}
And had no success. Any ideas why it's not working?
Thanks.