Hello
Is there a way to custom the general logo URL ?
I would like to set another url than the default one. The default one is linking to home of wordpress, but my “real home” is outside wordpress…
Thanks
Hey,
Please refer to this post – https://kriesi.at/documentation/enfold/logo/#change-the-logo-url-on-some-pages
Regards,
Yigit
Hello, thanks for this answer.
But sorry, my question was about the URL of the link, not the URL of the image.
When I click on the logo, for now I come back to the home of the wordpress. I don’t want that. I would like to change the logo’s link URL.
In what file could I find this link fabrication ?
Thanks
Hi,
Please use the code as following
add_filter('avf_logo_link','av_change_logo_url');
function av_change_logo_url($link)
{
$link = "https://kriesi.at";
return $link;
}
Best regards,
Yigit
Lot of thanks, as usual, the support is impeccable !
Hi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)
Best regards,
Yigit