Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #254304

    Hello

    I want to change the URL for website logo to another URL How can I do his job?

    #255182

    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

    #256731

    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

    #257521

    Hello

    I still waiting for any update

    #257641

    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

    #257650

    Thanks Bro, Its wrking

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘change the URL for website logo’ is closed to new replies.