Hello
I want to change the URL for website logo to another URL How can I do his job?
Hey zibaloon2!
You can find the code to change the logo url on this file /framework/php/function-set-avia-frontend.php line #444
Cheers!
David
Hello
I found that line but when I change the code I got this error:
Parse error: syntax error, unexpected 'http' (T_STRING) in /home/********/public_html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 444
Hello
I still waiting for any update
Hi!
Please undo the changes you have made and add following code to Functions.php file in Appearance > Editor
add_filter('avf_logo_link', 'avf_redirect_logo_link');
function avf_redirect_logo_link($link) {
$link = 'http://www.yourdomain.com';
return $link;
}
Cheers!
Yigit
Thanks Bro, Its wrking