Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #346720

    Hello,

    How to change the page linked to the logo?

    Thx

    #346888

    Hi SLHetcie!

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.