Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #379710

    Hi guys,

    how do I change the link of the main Logo in the header?

    I already found this thread but I didn’t work for me.

    Any suggestions?

    Cheers,

    Brad

    #379711

    Hi bradbranson!

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

    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link)
    {
        $link = "http://kriesi.at";
        return $link;
    }

    Cheers!
    Yigit

    #382157

    Worked like a charm. Thank You. (:

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Changing the Logo Link’ is closed to new replies.