Just an update for those who had troubles with polls not submitting in pages other than index.
I made a fairly simple workaround, so you can show the polls in other pages and the voting works correctly.
In vB options, you need to set the polls to show on
Index, choose the
ThreadID option.
The fix is in the plugin Sidebar Poll Include and this simple replacement does the trick.
Find this (Line 3):
PHP Code:
if (THIS_SCRIPT == 'index')
Replace it with:
PHP Code:
if (THIS_SCRIPT == 'index' OR THIS_SCRIPT == 'forumdisplay' OR THIS_SCRIPT == 'showthread')
You may change THIS_SCRIPT locations as you wish.
Hope that helps.
Val.