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

    i’d like the logo to link to another URL, outside of the site.

    #402399

    i figured out a way to do it, by hacking /enfold/includes/helper-main-menu.php

    you can see it here. http://pelledlab.org/

    wasn’t pretty – is there a better way?

    #402787

    Hi!

    It would be prettier if you 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;
    }

    Regards,
    Yigit

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