I want to re-enable the original WP admin bar after installing BuddyPress!

define( 'BP_DISABLE_ADMIN_BAR', true ); completely disables the admin bar - don't want that.

This question tells us to check the BuddyPress Codex page, and I tried messing with those action hooks but didn't get any desired results.

What's missing? How do we get that admin bar back?!

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Since buddypress 1.5 you can use:

define( 'BP_USE_WP_ADMIN_BAR', true );

I use it in bp-custom.php although it can go in wp-config.php

link|improve this answer
aaaaaargg. THANK YOU! Can't believe I missed that. – npc Feb 13 at 20:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.