Notifications
Clear all

Limited Support

Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.

We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!

Merry Christmas and Happy Holidays! 🎄

wpForo 1.x.x [Solved] Hide wpForo Title Admin Bar

3 Posts
2 Users
1 Reactions
1,806 Views
Posts: 94
Topic starter
(@deep-line-digital)
Estimable Member
Joined: 6 years ago

Hello,

I'm using a 13 inch computer and icons and titles in the admin bar are an issue for me.

I want to remove the name of your plugin while browsing the website from the admin bar.

I have a code for this but I couldn't find what to add to the code.

Can you help me with this?

Thank you

// Admin bar ikonları temizleme
function remove_from_admin_bar($wp_admin_bar) {
    /*
     * Placing items in here will only remove them from admin bar
     * when viewing the fronte end of the site
    */
    if ( ! is_admin() ) {
        // Example of removing item generated by plugin. Full ID is #wp-admin-bar-si_menu
    	$wp_admin_bar->remove_node('si_menu');

        // WordPress Core Items (uncomment to remove)
        $wp_admin_bar->remove_node('updates');
        $wp_admin_bar->remove_node('comments');
        $wp_admin_bar->remove_node('new-content');
        $wp_admin_bar->remove_node('wp-logo');
        //$wp_admin_bar->remove_node('site-name');
        $wp_admin_bar->remove_node('my-account');
        $wp_admin_bar->remove_node('search');
        $wp_admin_bar->remove_node('customize');
	$wp_admin_bar->remove_node('rank-math');
	$wp_admin_bar->remove_node('rcb-clear-current-cookie');
        $wp_admin_bar->remove_node('what is for wpFORO?');
    }

    /*
     * Items placed outside the if statement will remove it from both the frontend
     * and backend of the site
    */
    $wp_admin_bar->remove_node('wp-logo');
}
add_action('admin_bar_menu', 'remove_from_admin_bar', 999);

Topic Tags
2 Replies
Tutrix
Posts: 1521
(@tutrix)
Noble Member
Joined: 6 years ago

@t-niron

try

'wpf-community'

1 Reply
(@deep-line-digital)
Joined: 6 years ago

Estimable Member
Posts: 94

@tutrix thanks it worked 😉