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

    Hi
    I need to put an alternate logo image in mobile
    How can I do this in Enfold?
    Thanks

    #1324298

    Hey Ramiro,
    You could try using this filter in your child theme functions.php

    /*Use a different logo on mobile*/
    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(wp_is_mobile() )
        {
        $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }

    Please adjust the url to yours.

    Best regards,
    Mike

    #1324531

    Thanks,
    I’ll try

    #1324537

    Hi,
    Very good, please let us know once you confirm this is working for you and we can close this thread.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Alternate logo in mobile’ is closed to new replies.