Answers Forum
Ever wanted to enable the ability to specify a certain forum as an "answer" forum, where members can post questions and select the best answer given by the community? This is similar to yahoo answers, a very effective website where users can post questions and seek answers from registered users. Answering questions can get to be a mess, keep it organized and save yourself a bit of hassle when dealing with Q&A's. As a webmaster, you already have enough on your hands to have to worry about answering questions sometimes, and need an effective way to do this! Or maybe, you just want to let your community do it for you
Difference Between Answer Forum Light & Answer Forums Premium
* Enable a questions forum Lite/Premium
* Allow users to choose best answer Lite/Premium
* Question Statistics on forumdisplay Premium Only
* Top Helpers on forumdisplay Premium Only
* Recently Answered on forumdisplay Premium Only
* View Answered Topics Premium Only
* View Unanswered Topics Premium Only
* Answered Topics in postbit Premium Only
* Private Message user who's answer was chosen Premium Only
* Private Message answer provider if the answer is reset Premium Only
* Control user's ability to reset their own topic's answer Premium Only
* Allow usergroups to reset any topic's answer Premium Only
* Allow usergroups to select any topic's answer Premium Only *new
* Integrates with vbplaza (reward answer providers) Lite/Premium
* Integrates with vbcredits (reward answer providers) Premium Only
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Question; I would like to put an icon-image before unanswered and answered. I tried in admin-> Phrase Manager, with <img scr="link-to-image"> but i only see the icon (don't know the name) as i need a plugin for my browser to see the image.
How can i fix it please?
That should have done the trick. What exactly happened?
Looks great I will give it a try the only 2 key things I see missing are the ability to have categories of answers and the ability to rate answers like 1-10 instead of just "best " answer.
(In forumdisplay) Top helpers by each forum, not Top helpers from all forum
Please help how to make Top Helpers on forumdisplay will showing Top helpers by each forum, not Top helpers from all forum, thats how looks like yahoo answer
like this health category in yahoo answer, and the top contributor
// Recently Answered
if($vbulletin->options['answers_forums_enable_recently_answered']){
// An option is enabled, so show the right column
$show[right_column] = 1;
// Recently answered questions
$answered_threads = $vbulletin->db->query_read("SELECT thread.threadid, thread.title, post.dateline, thread.postuserid, thread.postusername, answer_post.userid AS answer_userid, answer_post.username AS answer_username
FROM " . TABLE_PREFIX . "thread AS thread
LEFT JOIN " . TABLE_PREFIX . "post as post ON(post.postid = thread.lastpostid)
LEFT JOIN " . TABLE_PREFIX . "post as answer_post ON(answer_post.postid = thread.g_answer_forum_answer)
WHERE forumid = " . $foruminfo['forumid'] . " AND g_answer_forum_answer != '0' AND thread.dateline > '" . $af_cutoff . "'
ORDER BY post.dateline DESC
LIMIT 15
");
// Top helpers
if($vbulletin->options['answers_forums_enable_top_helpers']){
// An option is enabled, so show the right column
$show[right_column] = 1;
// Users with most answers IE: Our Top Helpers
$top_helpers_get = $vbulletin->db->query_read("SELECT userid, username, forum_answers FROM " . TABLE_PREFIX . "user WHERE forumid = " . $foruminfo['forumid'] . " ORDER BY forum_answers DESC LIMIT 10");