Notifications
Clear all

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

3 Posts
2 Users
1 Likes
966 Views
t.niron
Posts: 86
Topic starter
(@t-niron)
Estimable Member
Joined: 4 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: 1248
(@tutrix)
Noble Member
Joined: 4 years ago

@t-niron

try

'wpf-community'
1 Reply
t.niron
(@t-niron)
Joined: 4 years ago

Estimable Member
Posts: 86

@tutrix thanks it worked 😉