Tagged: 

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #643325
    #643418

    Hi @stevegoh422 ;
    The Enfold Documentation, especially this topic Use a different logo on mobile may help you.

    #643419

    Hi!

    Please refer to @begrafiks’ post above

    @begrafiks
    thanks again :)

    Regards,
    Yigit

    #643436

    Hi begrafiks and Yigit,

    Thanks for the replies.
    I have tried the method, it manages to link to the specific page I intended it to but the logo has disappeared.
    Is there a way to remain the logo image?

    Regards,
    Steve

    • This reply was modified 8 years, 4 months ago by stevegoh422.
    #643770

    Guys?

    #643990

    Is there a way I can have the same logo displayed but link to different page?

    #644024

    Hi,

    just make sure that your logo image link is correct, then it should work fine.
    Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Andy

    #644034

    Hi Andy,

    Thanks for offering your help.
    Actually, I have a homepage for desktop and one for mobile view.

    What I need is that the same logo image to redirect to my “mobile” homepage on mobile view instead of my “desktop” homepage

    I have tried what Yigit and begrafiks suggested but that only helps me to link the logo to the “mobile” homepage.
    Unfortunately, the logo image “disappeared” on mobile view!

    Best Regards,
    Steven

    #644086

    Hi!

    Please use following code in Functions.php file instead

    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link) {
        if(wp_is_mobile() )
        {
        $link = "http://kriesi.at";
         }
        return $link;
    }

    Best regards,
    Yigit

    #644480

    Hi Yigit,

    It works like a charm!
    Thank you so much for the amazing support! You may close the topic now.

    Best Regards,
    Steven

    #644738

    Hi,

    You are welcome!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Different Logo Link on Mobile View’ is closed to new replies.