• Resolved mrjarbenne

    (@mrjarbenne)


    BuddyPress allows you to enable the toolbar for logged out users, which in previous versions allowed custom added nodes on the toolbar to be available to users who weren’t logged in. Now those links are all hidden on mobile. Is there a way to pull this functionality back?

    http://wordpress.org/plugins/mp6/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Till Krüss

    (@tillkruess)

    Yes, you can set display: block; to the admin-bar elements you wish to see on mobile. Make sure they don’t break the layout on screens as small as 320px. This is how we hide the elements.

    Thread Starter mrjarbenne

    (@mrjarbenne)

    Thanks Till, I can’t seem to get that to work. The admin bar is still blank on small screens. Any tips?

    #wp-admin-bar-root-default {
    	display: block;
    }
    Plugin Author Till Krüss

    (@tillkruess)

    You can either only show a specific element:

    #wp-admin-bar-root-default li#wp-admin-bar-YOUR-ITEM { display: block; }
    #wp-admin-bar-top-secondary li#wp-admin-bar-YOUR-ITEM  { display: block; }

    Or you can readable all items:

    #wp-admin-bar-root-default > li,
    #wp-admin-bar-top-secondary > li { display: block; }
    Thread Starter mrjarbenne

    (@mrjarbenne)

    Forget it. I was missing an element:

    #wp-admin-bar-root-default #wp-admin-bar-bp-login {
    	display: block;
    }

    Thanks for your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Adminbar Nodes not appearing in Mobile’ is closed to new replies.