Just installed the plugin. In the User list the collumn “Letzer login” (= last login) is shown, but it shows “Noch nie” (= never) for all users.
And yes I am sure that most users have logged in and I sure know about 2 users who have logged in today.
I have installed the following additinal plugins which deal with users:
UltimateMember, Learnpress, bbPress
Hi, is your plugin compatible with BuddyBoss platform & theme?
Would be awesome to se last login time for my users.
Thanks.
]]>Hi, big fan of your last login plugin. Lately I have been setting up Two Factor on my WP sites and I realised that the last login column does not update if the user has Two Factor authentication enabled.
]]>In looking at the source code, in the wpll_activate
function that is hooked into register_activation_hook
, it looks like it wipes out all historical login data for users if you deactivate and reactivate the plugin. Is this correct?
Hi Konstantin
I have been using your plugin as a must-have for all 15 sites I have – very useful – thanks!
I wonder if we could have the following featre
The idea was to send a password reset email to users have never logged in (but were invited millions of years ago)
thanks
Carsten
]]>I think the line should read
$value = date_i18n( $format, get_date_from_gmt( date( 'Y-m-d H:i:s', $last_login ), 'U' ) );
to get localized month names.
]]>On a WooCommerce site with this plugin, two years no: All customers must register or log in to checkout. But most, not all, of the customers show up with “Never.” in the column. Do you have an idea why their registering and logging in are not catched? Also have Two Factor, but only for admins.
]]>This plugin has been translated to Norwegian (bokm?l) fit at least three years, but not mentioned on the main page here.
]]>When a login here (GMT +1) happens just after midnight, the displayed date is the date before.
The plugin saves time()
in the user meta, and in WordPress this means GMT. When displayed the timestamp is regarded local. Suggest this change:
$value = get_date_from_gmt( date( 'Y-m-d H:i:s', $last_login ), get_option( 'date_format' ) );
in the manage_users_custom_column
filter.
Just in case you did not know. I tried your plugin and it failed to work for my install which included the Admin Columns plugin.
The Admin Columns plugin completely overrules your attempt to show last login. Once I disabled that plugin, it worked like a champion!
]]>Hello,
This plugin only shows the date for the last login. How can I modify it to show the time together with the date?
Thank you.
]]>After installing this plugin and I go to the Users section, all my last logins are just empty and they are not even showing Never.
]]>Hi Konstantin.
On a multisite I’ve ran into a problem with your plugin. There’s no code that sets the user meta field to 0 when a user account is created by an admin. This causes users to be shown in the Network Admin user list, but not in the subsite user list – because of pre_get_users()
. Making them appear missing.
I’ve fixed the situation momentarily by deactivating and activating the plugin network-wide. So wpll_activate()
runs and everyone gets wp-last-login 0.
To fix it for all future users I suppose this will do:
add_action( 'user_register', function ( $user_id ) {
update_user_meta( $user_id, 'wp-last-login', 0 );
}, 10, 1 );
Can you confirm this is a bug? (And then merge the fix) Or is it something specific to my site.
Thanks!
]]>Just wondering if this has been tested on newest WP version, as all I see is all users appear to have ‘never’ logged in, including myself as admin?
]]>Hi
Installation and export to excel is working great, but the date format for the wp-last-login coloumn is weird. We get numbers like 1544624906, 1543402308 and 1544516037 instead of regular time stamps.
Suggestions?
Thanks!
]]>I have the following code to autologin users after they have created a profile:
add_filter( 'registration_redirect', 'ckc_registration_redirect' );
function ckc_registration_redirect( $registration_redirect ) {
return home_url('/sample-page/');
}
Well, in that case the plug-in doesn’t return any “Last Login” Date…
Any way to modify the above code or fix the plugin?
M
]]>With this update the timestamp has been removed. Please add back as it is nice to know not only the day someone last logged in but the time as well.
]]>how do I deactivate this plugin without breaking my site?
]]>Is there a plugin or would someone like to write one that lets users of my website see when other users/friends have last logged in?
I could really do with a plugin that enable front end users to see (maybe with a popup box)
]]>Shuts you out from wp-admin!
]]>Hi Konstantin. I was wondering if you still supporting your plugin WP Last Login? Sims to me the plugin is not registering all users login to my site. I use your plugin and rely on it to show who logging in and that is shown on reports. I definitely know user that have login and they are show Last Login – Never. Do you have any suggestions?
]]>The plugin page says “Compatible up to: 4.3.2” – could someone let me know if it works with 4.4.1, before I upgrade? Thanks!
]]>I noticed that once the plugin deactivates it purges the data for last log in.
This is a great simple plugin. I highly recommend it!
]]>Hello,
I have slightly updated russian translation in this plugin – see patch below:
From 1babd80318aa608a9447b968d94cdca153e9679c Mon Sep 17 00:00:00 2001
From: Andrey Tataranovich <[email protected]>
Date: Thu, 15 Oct 2015 10:54:09 +0300
Subject: [PATCH] Adopt translation.
---
lang/wp-last-login-ru_RU.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lang/wp-last-login-ru_RU.po b/lang/wp-last-login-ru_RU.po
index b45a513..35c8a83 100644
--- a/lang/wp-last-login-ru_RU.po
+++ b/lang/wp-last-login-ru_RU.po
@@ -40,7 +40,7 @@ msgstr ""
#: wp-last-login.php:0
#@ wp-last-login
msgid "Displays the date of the last login in user lists."
-msgstr "Отображает дату последнего Войти в списки пользователей."
+msgstr "Отображает дату последнего входа в списки пользователей."
#. translators: plugin header field 'Author'
#: wp-last-login.php:0
@@ -63,7 +63,7 @@ msgstr ""
#: wp-last-login.php:100
#@ wp-last-login
msgid "Last Login"
-msgstr "Последнее Логин"
+msgstr "Последний вход"
#: wp-last-login.php:127
#@ wp-last-login
--
2.1.4
]]>
Hi there. The plugin still does not work properly.
When I click sort the “Last login” column, it sorts the users as it should be. But the users with status Never. are disappearing from the list. So I can’t sort them.
Maybe better to change the value from Never. to “user registration date”, so we may sort the users and find very old registrations.
]]>I tried this plugin and it didn’t record anything for me. Could be my other plugins, who knows. When I uninstalled it, the column title remained in the view of users – not good.
]]>Hi again. I need to know. Does this plugin work with social login plugins?
And what about using it under multisite? should it work? have you tested it?
Thanks in advance
]]>Interesting plugin, but showing only the date is not enough for completeness when you need to audit editors’ work times. Is there any possibility to add the full date including the recorded time to the user screen?
I see you mentioned “wpll_date_format” but I can’t figure out where to use it.
Can you ellaborate please?
Thank you!
I just installed this plugin and it works great.
How do I change the timezone that it is set to?
Hi,
I have installed it the plugin(last week), column is showing but not returning any data other than “Never.”
I am using Wishlist Member, so am wondering if there is a possible plugin conflict. If it’s a possibility of a conflict how would one fix this?
Thanks
]]>