By DOMENICO LOMUSCIO on Thursday, 27 June 2019
Posted in General Issues
Likes 0
Views 437
Votes 0
hi, is it not possible to be aware of the users' total points, that is without my adding them one at a time there is no possibility of knowing it without my counting?
Hi DOMENICO,

Correct me if I am wrong here, do you mean that you want to know user's total point without adding it manually? Actually you can see it on user's profile ( frontend: https://take.ms/CmcmO ) and in backend you can see in the user section ( https://take.ms/IZeB1 )
Perhaps, I have misunderstood you here, can you explain more in detail maybe with some screenshot might help us a lot

Thanks for your cooperation and understanding.
·
Thursday, 27 June 2019 11:38
·
0 Likes
·
0 Votes
·
0 Comments
·
hello, what I want to say is that I need to know how many points are in circulation on my site, that is all user points, but not individually, I know, I want the sum of all the points generated ... is it possible? or do I have to count them individually, one by one?
·
Thursday, 27 June 2019 13:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi DOMENICO,

Ah, I see, sorry for my misunderstanding. Unfortunately, there is no setting/place displaying total points for all user in a site.
However you can always calculate using sql query below:

select sum(points) from jos_social_points_history;

Do not forget to change 'jos' to your database prefix.
·
Thursday, 27 June 2019 13:30
·
0 Likes
·
0 Votes
·
0 Comments
·
thank you
·
Thursday, 27 June 2019 13:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.

Thanks for understanding.
·
Thursday, 27 June 2019 14:43
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post