Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Solved] 'Forum Dashboard'

3 Posts
2 Users
1 Reactions
767 Views
Posts: 9
Topic starter
(@deeveearr)
Active Member
Joined: 5 years ago

Hi,

A while ago, I asked in the WordPress Forums how to remove 'Forum Dashboard' from my top admin bar, and got the reply:

Add this to your functions.php - remove_action('admin_bar_menu', 'wpforo_add_adminbar_links', 999);

This little snippet was a godsend, until a few weeks ago when it stopped working.

Even worse now (according to the staff at Perfmatters) it is adding 10 seconds loading time throughout the admin section, and 2-3 seconds loading time on the front-end due to those silly little emojis that are now loaded inside 'Forum Dashboard', meaning that I now have to 'allow emojis' rather than 'disable emojis', which is the way that I usually work.

So the obvious question that I'm asking here is:

How do I permanently remove 'Forum Dashboard' from my top admin bar now that the above script has stopped working?

 

2 Replies
Tutrix
Posts: 1522
(@tutrix)
Noble Member
Joined: 5 years ago

Hi @deeveearr

try (functions.php)

add_action( 'admin_bar_menu', function($wp_admin_bar) {
	$wp_admin_bar->remove_node('wpf-community');
}, PHP_INT_MAX );

or this CSS Code

#wp-admin-bar-wpf-community {
  display: none;
}
1 Reply
(@deeveearr)
Joined: 5 years ago

Active Member
Posts: 9

@tutrix 

I've already tried hiding it with CSS, but that's not getting rid of it.

The functions.php snippet from above seems to do the trick, thank you so much!