By Stefano Virgilli on Thursday, 19 September 2019
Posted in General Issues
Replies 5
Likes 0
Views 547
Votes 0
Hi, for the purpose of analytics and statistics I need to show my business partner how many votes have been casted on the whole social... is there a counter anywhere?
Hey there,

Can you explain more in detail on what do you mean 'show how many votes have been casted on the whole social' as we do not really understand on what are you trying to bring up here?
·
Thursday, 19 September 2019 18:31
·
0 Likes
·
0 Votes
·
0 Comments
·
I want to count the total votes casted without going one by one.
Right now I am going like:
Poll #1 > 10 votes
Poll #2 > 8 votes
...
Poll #22 > 9 votes....
Then manually count.

I am asking if there is a faster way to find out how many votes in total have been casted summing up all the Polls all together.
·
Friday, 20 September 2019 11:46
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

Do you mean that you want to show the total number of all polls have been created on your site and total number of votes of all polls have been made on your site?

If yes, there is no setting to do this.

In order to get both of it, you can run the following SQL query on your database:

Total votes:
SELECT COUNT(1) FROM `#__social_polls_users` WHERE `state`=1;

Total polls:
SELECT COUNT(1) FROM `#__social_polls`;


Remember to replace the #_ with your table prefix.
·
Friday, 20 September 2019 13:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Would be nice to have it in backend directly as stats in the dashboard
·
Friday, 20 September 2019 14:48
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

It would be best if you could submit your feature request regarding this simply by creating a new ticket on the forums, and set it to "Feature Request". The team will usually prioritize features that are in popular demand during the development process of the next major release.
·
Friday, 20 September 2019 16:44
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post