Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Answer Forums 1.0.0 Details »»
Answer Forums 1.0.0
Version: 1.0.1, by Gio~Logist Gio~Logist is offline
Developer Last Online: Oct 2022 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.7.3 Rating:
Released: 09-14-2008 Last Update: 09-20-2008 Installs: 197
DB Changes Uses Plugins
Code Changes  
No support by the author.

Brought To You By
ModernvB - Vbulletin Solutions & Services
http://www.modernvb.com

Premium Modification:
http://www.modernvb.com/vb_products....o&productid=10

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.

Comments
  #162  
Old 10-03-2008, 09:17 PM
Greek76's Avatar
Greek76 Greek76 is offline
 
Join Date: Aug 2006
Location: Planet Earth
Posts: 440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you could get the mod to work with vbplaza Ill purchase the premium version. I get database errors.
Reply With Quote
  #163  
Old 10-04-2008, 07:52 AM
Hugo Holbling Hugo Holbling is offline
 
Join Date: Sep 2007
Posts: 53
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gio~Logist View Post
You can do this by drawing a conditional based off of TIMENOW (get the number that gives you via php "echo TIMENOW;") and then create a conditional based off of it.
I'd appreciate some more guidance or help with how to achieve this for those of us without much knowledge of php.
Reply With Quote
  #164  
Old 10-05-2008, 06:44 AM
hrk hrk is offline
 
Join Date: May 2007
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

installed at bought the premium version straight away to support your works

will be better is there is NO SINGLE template edit required for designing the best answer, answere, unanswered fields.

4x4 posted edit xml , can i have more info on that?

example

<span style="font-weight: bold; color: #006400;">Answered:</span>

<span style="font-weight: bold; color: #ff0000;">Unanswered:</span>

would like to replace the field with icons.

great hack. nominated
Reply With Quote
  #165  
Old 10-05-2008, 03:19 PM
4x4 Mecca 4x4 Mecca is offline
 
Join Date: Feb 2007
Posts: 396
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here is my code. If you go to "Plugin Manager" in your control panel, then find and Edit Plugin "Answer Forums - Show answered/notanswered In Forum" You can replace it with this and your own image links of course!

Code:
if($vbulletin->options['g_answer_forum_show_forumdisplay']){

// Set cutoff date if once is applied
$af_cutoff = $vbulletin->options['answers_forums_cutoff_date'];

if($foruminfo['g_answer_forum'] AND THIS_SCRIPT == 'forumdisplay' AND ($thread[dateline] > $af_cutoff OR $thread['g_answer_forum_answer'] != '0')){
    
        if(!$thread['g_answer_forum_answer']){
	
             $thread['movedprefix'] = '<img src="/forum/images/icons/exclamation.png" border="0" title="Not Answered">' .  $thread['movedprefix'];

        } else {

             $thread['movedprefix'] = '<img src="/forum/images/icons/accept.png" border="0" title="Answered">' . $thread['movedprefix'];
            
        }
    
}

}
Reply With Quote
  #166  
Old 10-05-2008, 08:43 PM
Alfa1's Avatar
Alfa1 Alfa1 is offline
 
Join Date: Dec 2005
Location: Netherlands
Posts: 3,537
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alfa1 View Post
Please add this functionality: A 'Is this a question that you want an answer to Yes/No' Radio button on newthread.
If the thread creator selects Yes, then the thread will have Answer functionality.
If the thread creator selects No, then the thread will have no Answer functionality.

This way, the answer functionality does not have to be confined to dedicated forums
Is this something that you will add to either the light or premium version?
Having both threads with and without answer functionality in the same forums, is a must for me. Please be so kind to add this.
Reply With Quote
  #167  
Old 10-05-2008, 11:06 PM
oly51's Avatar
oly51 oly51 is offline
 
Join Date: Mar 2002
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by 4x4 Mecca View Post
Here is my code.
Thanks!
Reply With Quote
  #168  
Old 10-05-2008, 11:25 PM
hrk hrk is offline
 
Join Date: May 2007
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thak you mecca 4x4
Reply With Quote
  #169  
Old 10-06-2008, 12:14 AM
dtv100 dtv100 is offline
 
Join Date: Apr 2007
Location: in the south of the north
Posts: 307
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

request :
to add donation icon for select usergroup that answer questions .(that way people could donate to those people)
Global search for all un-answer questions.
automation add reputation to select answer
pm send from person that click for best answer not by user that make the question if he did not click for best answer .
personal answer stats in postbit .
also make it when you check for new post in navlink search page show you answer and un-answer prefix to make it easy for member and staff find post .
Reply With Quote
  #170  
Old 10-06-2008, 03:23 AM
Deepdog009's Avatar
Deepdog009 Deepdog009 is offline
 
Join Date: Dec 2004
Location: Almost out of PHP TZone
Posts: 485
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Gio~Logist all I can say is ...>>> Beauts <<< Keep the ball rolling...
Reply With Quote
  #171  
Old 10-07-2008, 03:27 AM
hrk hrk is offline
 
Join Date: May 2007
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice work.

anymore premium feature in plan ?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:09 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04903 seconds
  • Memory Usage 2,313KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete