@frendeliko Admin bars were not being shown on my website, so you gave this code without adding conditions. Thanks for adding conditions in my code 🙂
@mjonesnerdery and @hoch to fix this issue add this function in the theme functions.php file
// Add adminbar blank div to fix BBPRESS jQuery issue
function add_admin_bar_div() {
echo '<div id="wpadminbar" style="display:none;"></div>';
}
add_action('wp_footer', 'add_admin_bar_div',15);