I am having the exact same issue.
I can delete one by one, but if I select all and hit Delete Selected it scrolls to the page top.
The link on delete selected is this : /timebank/members/name/messages/#
It does the same whether admin or not.
Disabled all other plugins, still no result.
bp-custom.php? = no
WP 3.8
BP 1.9.1
Twenty Fourteen
Directory install
@henry & @Barney – cool… both of those work to get rid of the whole admin bar.
However, I would like to end up with this:
If (the user is author) { get rid of all the Buddypress stuff in the admin bar}, else {get rid of the whole admin bar.}
Like this:
if ( current_user_can( 'publish_posts' ) ) {
get rid of all Buddypress stuff in admin bar
} else {
add_filter( 'show_admin_bar', '__return_false', 99 );
}