Avada › Forums › Community Forum › How to change the link of the logo?
-
AuthorPosts
-
Hello,
I would like to change the standard link of the logo. I don’t want the logo to link to the “home” page. How and where can I change the link of the logo?
Thank you very much in advance!
All the best
Hi,
Go to Fusion Builder > Settings > Logo.
Halfway down, you’ll see a field called “Logo Custom Link URL”. Enter the URL you want behind the logo.
Happy webbing!
Hi,
thank you very much for the help!
All the best
Hi,
how can I change the WP Logo Link on the logIn page of wortpress.org to my website?Thank you very much in advance!
Hi @prostylemedia,
If there’s no Avada setting for this, you can use the
login_headerurl
hook.If you want to kick the tires, here’s a working example plugin that uses that filter to point that link to your homepage.
https://github.com/marklchaves/cme-login
Cheers!
hi,
i managed to perform such action just in javascript.
i added a code block element in my footer section and added this script :<script>
const elements = document.getElementsByClassName(‘fusion-column-anchor’);
for (const element of elements) {
element.href = ‘http://www.do-not-go-there.com’;
}
</script>As long there is only ONE tag using the class ‘fusion-column-anchor’, it should not produce any bug i guess.
it’s a shame AVADA template did not insert a unique ID element on the logo ahref, we could have use it, so we need to search for the Class ‘fusion-column-anchor’ . I hope the class name will not change with the update or time version….
-
AuthorPosts
- You must be logged in to reply to this topic.