How can I acquire exact vote numbers in some votings? We are currently voting for trust level 4 people. People have 5 votes. There are 40 candidates, which I had to split into 2 polls because it only accepts 20 per poll. That is, 5 votes split between the two polls. This means that the total of votes differs per poll so the percentages do not correspond.
For exact resolving, I would need to acquire the exact numbers of votes in the polls. How is this done?
There is a site settings for this. 20 is the default value. Search for poll maximum options
To solve your problem I think that you can write a proper query and use the Data Explorer plugin or delete the 2 topics, change the site setting and create only 1 poll with 40 options.
You can find the number of votes with the API. By visiting https://discourse.example.com/t/#{topic_id}/posts.json youâll get the JSON data of all the posts within the topic. The #{topic_id} is the number you see in your browserâs URL bar when you visit a topic.
The API will return a large JSON object where youâll find the number of votes for each option under the polls key.
It also seems the number of votes is shown when âShow Resultsâ is clicked⌠shame Of course this means I have to calculate single option votes manually, but with percentage and total number itâs doable.