• Resolved islp

    (@islp)


    Hi, I want to display the search icon in the admin bar of mobile devices: in this website too, I see the icon is NOT displayed when I’m logged in on my device (while I see it when I navigate the website from desktop pc). What can I do to make it visible? Is this possible?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator bcworkz

    (@bcworkz)

    Hah! I never noticed that before! I guess I don’t use my phone much for WP stuff.

    The search icon/form is still there, but it’s hidden with CSS. You could output a <style> block from the “admin_print_styles” action with this in it:

    @media screen and (max-width: 782px)
    #wpadminbar #wp-admin-bar-search {
        display: block;
    }

    Add the action with a late priority so your style occurs after other styles, giving it some precedence.

    Thread Starter islp

    (@islp)

    Ok, thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Admin bar search icon on mobile’ is closed to new replies.