Plugin Support
Laszlo
(@laszloszalvak)
Hi @dav74
Currently we don’t have such feature, but it is already on our To Do list to create some statistics.
But if you are truly interested and you would like to know it right now, you can check the <wp_preffix>social_users table in your database, for example: wp_social_users
where we are storing the link between the WordPress account identifier – Provider identifier – and the Social Media account identifier.
Best regards,
Laszlo.
-
This reply was modified 7 years, 3 months ago by
Laszlo.
Thread Starter
dav74
(@dav74)
Hi @laszloszalvak
Many thanks for your quick reply. So if I check that in the database (which has ID, type and identifier columns) then that should tell me how many people have signed in using those social share buttons since I installed and published it?
Or can people still use these social login buttons without their details being added to the social_users table?
Thanks
Plugin Support
Laszlo
(@laszloszalvak)
Hi @dav74
Basically yes, you could check the number of social accounts linked using on of the provider offered by Nextend Social Login.
For example with an SQL like:
SELECT type, count(*) AS userCount FROM wp_social_users GROUP BY type
you could retrieve the number of users of each provider.
Please note that, you need to replace the prefix (wp_) in wp_social_users with your own prefix.
People who register with Nextend Social Login will always appear both in the “All users” list and in this table of your database!
Best regards,
Laszlo.