How to re-enable admin bar with Buddypress active? (BP bar removed) [closed]

How do I force WordPress/Buddypress to use the WordPress admin bar on the frontend?

I know that I can disable the BP bar with define( 'BP_DISABLE_ADMIN_BAR', true ); in the config, but the admin bar does not show back up.

3 Answers
3

In your wp-config.php, put this:

define( 'BP_USE_WP_ADMIN_BAR', true );

Note you must put it in wp-config.php, I had it in functions.php first and it did not work.

Leave a Comment