Activity

  • sheridan replied to the question Buddypress toolbar missing for logged in users in the forum BuddyBoss theme 8 years ago

    In case anyone else faces this issue, I found out that woocommerce is the culprit. I added these lines of code the functions.php file in the buddyboss child theme and it took care of it.

    remove_filter( 'show_admin_bar', 'wc_disable_admin_bar', 10, 1 );
    show_admin_bar( true );