I found this script at, http://wordpress.stackexchange.com/questions/15444/is-there-an-easy-way-to-move-the-wp-admin-bar-to-my-own-location
I’ve tried to implement it though I’m not having much luck. Should I be changing anything within which would allow buddypress to use it?
function wpse15444_wp_print_scripts()
{
if ( ! is_admin() ) {
wp_enqueue_script( ‘wpse-15444’, plugins_url( ‘wpse-15444.js’, __FILE__ ), array( ‘jquery’ ), false, true );
}
}
// wpse-15444.js
jQuery( window ).load( function() {
jQuery( ‘#wpadminbar’ ).appendTo( jQuery( ‘#wpse15444-admin-bar-container’ ) );
} );