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! 🎄
How-to and Troubleshooting
3
Posts
2
Users
1
Reactions
1,806
Views
Jan 19, 2022 8:58 pm
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);
2 Replies
Jan 20, 2022 5:05 am
@t-niron
try
'wpf-community'