Hey guys, fantastic plugin!
I've noticed your plugin disables the WP admin bar for all users except for admin.
If i enable the option "Show Admin Bar for Members" it shows the bar for every registered user, which is not what I want.
I want to be able to show the admin bar for Authors/Editors & Admins, but not subscribers.
Can this be done?
Thanks!
There is no such option, we'll enable this for editors and authors in near future releases.
OK great, thanks.
Any word on when the photo addon will be released?
You can use this code in current active WordPress theme functions.php file
function my_admin_bar_control_function() {
if (current_user_can('administrator') || current_user_can('editor') || current_user_can('author') ) {
show_admin_bar(true);
} else {
show_admin_bar(false);
}
}
add_action('init', 'my_admin_bar_control_function', 20);
How to Easily Add Custom Code in WordPress (without Breaking Your Site)
There is no such option, we'll enable this for editors and authors in near future releases.
Hi there, this feature is crucial to my site. Any chance this could be updated soon?