Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #561907

    Hi!

    We would like to show a bigger logo (in our header) on homepage, and a smaller logo on subpages.
    How can this be done?

    Kind regards.

    #562036

    Hi PresentIT!

    can you provide us with a link to the site in question please?

    Best regards,
    Andy

    #563027

    Hi Andy,

    The site is not yet active. Is it possible to answer our question in this case?
    Otherwise we’ll be needing to wait a few weeks.

    Regards,

    #563234

    Hi!

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

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(is_home())
        {
        $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }

    Best regards,
    Yigit

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