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

    HI!
    I’VE USED THE TWEAK FROM THIS THREAD BELOW IN VAIN… IS THERE ANY PARTICULAR REASON WHY?

    https://kriesi.at/support/topic/change-logo-link-in-enfold-remove-comment-counts-from-post-silder/#post-188544

    #304554

    FOUND THIS BELOW FROM MENTIONED THREAD… BUT THE CHANGE IS NOT WORKING :( PLEASE HELP…

    Please go to wp-content\themes\enfold\framework\php folder and open function-set-avia-frontend.php file and find

    $logo = “<$headline_type class=’logo bg-logo’>
    You are going to see

    “.$link.”
    in the same line. You should change it to your url

    #304560

    Hi!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_logo','av_change_logo_url');
    
    function av_change_logo_url($url)
    {
        $url = "your link goes here";
        return $url;
    }
    

    Regards,
    Yigit

    #304625

    Thanks for the speedy help yigit, unfortunately it didnt work.. The logo couldn’t be fetched with the additional codes..

    #304683

    Hi!

    Thank you for the update.

    Please use this instead:

    add_filter('avf_logo_link','av_change_logo_url');
    
    function av_change_logo_url($link)
    {
        $link = "http://www.google.com";
        return $link;
    }

    Regards,
    Ismael

    #305217

    IT WORKED PERFECTLY! THANK YOU!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘CHANGE LOGO LINK AWAY FROM DEFAULT 'HOMEPAGE'’ is closed to new replies.