MyBB Community Forums

Full Version: Making "Ajax Poll Voting" plugin working with 1.6.12
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Link to plugin: http://mods.mybb.com/view/ajax-poll-voting



1 - Download plugin
2 - Open inc/plugins/ajaxpoll/jscripts/ajaxpoll.js with Notepad++ or replace with attached file
3 - Find:
method: 'get',
4 - Replace:
method: 'post',
5 - You need repeat 3 and 4 thrice, because has three "method: 'get',"
6 - Find:
'#ajaxpoll a[href^=polls.php?action=showresults]'
7 - Replace:
'#ajaxpoll a[href*="polls.php?action=showresults"]'
8 - Find:
'#ajaxpoll a[href^=polls.php?action=do_undovote]'
9 - Replace:
'#ajaxpoll a[href*="polls.php?action=do_undovote"]'
10 - Upload and activate plugin. It's all.