This works fine in the backend for my admin account. But, if I log in as some other account (editor, for example), it does not show up in the backend unless I enable it for that user.
Is there a way to ALWAYS have it displayed in the backend?
This works fine in the backend for my admin account. But, if I log in as some other account (editor, for example), it does not show up in the backend unless I enable it for that user.
Is there a way to ALWAYS have it displayed in the backend?
As you discovered, all settings are on a per-user basis. However you can modify this plugin's defaults using a filter. Drop this in your own plugin or your theme's functions.php file:
add_filter( 'wpabar_defaults', 'xyzzy_wpabar_defaults' );
function xyzzy_wpabar_defaults( $defaults ) {
$defaults['show_admin'] = 1;
return $defaults;
}thanks!
This topic has been closed to new replies.