Community Support Forums — WordPress® ( Users Helping Users ) — 2011-11-22T15:17:34-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=2871 2011-11-22T15:17:34-05:00 http://www.primothemes.com/forums/viewtopic.php?t=2871&p=53701#p53701 <![CDATA[Re: Removing the Admin bar for members]]>
I had it disabled, because I didnt know of any other option

this fixes the problem and I can have my admin bar back now when using the site

thanks a heap for posting!

Statistics: Posted by 16k_zx81 — November 22nd, 2011, 3:17 pm


]]>
2011-11-22T14:25:59-05:00 http://www.primothemes.com/forums/viewtopic.php?t=2871&p=53699#p53699 <![CDATA[Re: Removing the Admin bar for members]]>
http://wordpress.org/extend/plugins/wp- ... admin-bar/

It lets you enable/disable admin on user level by level basis.

Statistics: Posted by weblantis — November 22nd, 2011, 2:25 pm


]]>
2011-09-01T13:20:33-05:00 http://www.primothemes.com/forums/viewtopic.php?t=2871&p=33646#p33646 <![CDATA[Re: Removing the Admin bar for members]]>

Statistics: Posted by Cristián Lávaque — September 1st, 2011, 1:20 pm


]]>
2011-08-31T20:31:51-05:00 http://www.primothemes.com/forums/viewtopic.php?t=2871&p=33549#p33549 <![CDATA[Re: Removing the Admin bar for members]]> Thats all I needed to know

Thanks Christian

Statistics: Posted by 16k_zx81 — August 31st, 2011, 8:31 pm


]]>
2011-08-31T20:25:27-05:00 http://www.primothemes.com/forums/viewtopic.php?t=2871&p=33545#p33545 <![CDATA[Re: Removing the Admin bar for members]]>
I hope that helps. :)

Statistics: Posted by Cristián Lávaque — August 31st, 2011, 8:25 pm


]]>
2011-08-31T00:32:04-05:00 http://www.primothemes.com/forums/viewtopic.php?t=2871&p=33479#p33479 <![CDATA[Re: Removing the Admin bar for members]]> Statistics: Posted by 16k_zx81 — August 31st, 2011, 12:32 am


]]>
2011-03-28T23:19:04-05:00 http://www.primothemes.com/forums/viewtopic.php?t=2871&p=8537#p8537 <![CDATA[Re: Removing the Admin bar for members]]>

I had also wanted to solve this problem before and Jason showed me this plugin that removes it https://wordpress.org/extend/plugins/disable-admin-bar/

Statistics: Posted by Cristián Lávaque — March 28th, 2011, 11:19 pm


]]>
2011-03-28T22:22:45-05:00 http://www.primothemes.com/forums/viewtopic.php?t=2871&p=8536#p8536 <![CDATA[Removing the Admin bar for members]]>
Maybe you can have an option to remove the WP top admin/user bar in your next release...Not sure why WP don't have an option for that but I find it really annoying....and somehow branding your site as everybody else.

I know you can remove it by editing each user option but If you have thousands it will be impossible unless you inject the db....

Here is a temp solution i found but It would be nice if you can come up with something..

in your functions.php

add this line on top

Code:
<?php
function my_function_admin_bar($content) {
    return ( current_user_can("administrator") ) ? $content : false;
}
add_filter( 'show_admin_bar' , 'my_function_admin_bar');
?>


that will remove the top admin bar to all users...Not for the admin...this way you still have access to it's usability

Sam

P.S. Please look into my other post Jason...Thank you
http://www.primothemes.com/forums/viewtopic.php?f=4&t=2838

Statistics: Posted by drbyte — March 28th, 2011, 10:22 pm


]]>