SMF Support > SMF 2.0.x Support

show who has voted what.

(1/4) > >>

onealf:
Can somebody tell me how i can make the votes visible.

I don't know where to start to make this visible.

thanks in advance

Alfred

iceman~:
I would be interested in this too ... Dont mean to bump this post .. but waiting ......
Thanks.

Nathaniel:
Unfortunately this would involve changes to the database because the actual table which stores results for polls ("{db_prefix}poll_choices") within the database only stores a numerical value for each choice, not a list of people and what they voted.

I am sure that a Mod could do this however, if somebody was willing to make one.

I might think about it, but I am currently working on some other mods, so it wouldn't happen any time soon if I did it.

A post in the mod requests area might yield some more responses. ;)

H:
Unfortunately this isn't currently available as a feature or mod although you can request it in Mod Requests (See: Mod Requests)

@LHVWB is it not in log_polls?


--- Code: ---CREATE TABLE {$db_prefix}log_polls (
  ID_POLL mediumint(8) unsigned NOT NULL default '0',
  ID_MEMBER mediumint(8) unsigned NOT NULL default '0',
  ID_CHOICE tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY (ID_POLL, ID_MEMBER, ID_CHOICE)
) TYPE=MyISAM;
--- End code ---

Nathaniel:

--- Quote from: H on June 01, 2008, 08:44:39 AM ---@LHVWB is it not in log_polls?

--- End quote ---

Indead it is, I obviously I didn't look close enough at the database! ;)

Making this mod won't actually be too difficult. I might consider making it after my other mods are done. ;)

Out of interest, would you want an option in the admin section to turn this on and off, as well as an option to allow only certain membergroups to view individual votes? I am just brainstorming possible features of a mod, so any more thoughts would be good. :)

Navigation

[0] Message Index

[#] Next page

Go to full version