Tagged: ,

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

    Hi Peter!

    We do have a filter for the logo. Here is an example on how to use it:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
    if(ICL_LANGUAGE_CODE=='en'){
         $logo = "http://hero.travel/wp-content/uploads/HeroHomeLogoWhite.png";
    }
    elseif(ICL_LANGUAGE_CODE=='de'){
        $logo = "http://hero.travel/wp-content/uploads/HeroHomeLogoWhite.png";
    }
        return $logo;
    }

    let me know if that helps you at all

    Cheers!
    Basilis

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