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

    Hello,

    We have a splash page setup using the enfold theme that takes users to one of two destinations. One is an external site and the other is internal How can we change the logo url so after they leave the splash page to go to the internal site they won’t got back to the splash page when the click the logo.

    See private text below…

    #378457

    Hey atrifico!

    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.