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

    How do I link the logo to a url of my choice?

    Thanks.

    Antonio

    #630347

    Hey abortolotti,

    Please try adding this at the very end of your themes / child themes functions.php file:

    Edit the $link value to the link you like to add.

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

    Best regards,
    Vinay

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