Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
778 views
in Plugins by
Is there any plugin which can do that? I want to give an option to the users to disable selected answer feature at their question, so it can be used as a discussion thread.

If there is no plugin, how to achive this?
Q2A version: 1.5

1 Answer

0 votes
by
selected by
 
Best answer

My plugin(Extra Question Field) may help you?

Solution ex:

  1. Install plugin
  2. Add checkbox field which repeals best answer
  3. Add function to your theme
function a_selection($post)
{
  if(!qa_db_select_with_pending(qa_db_post_meta_selectspec($post['parentid'], 'qa_q_extraX')))
    qa_html_theme_base::a_selection($post);
}

"X"  is order number of admin plugin page.

Plugin is used also at my site.

by
Sorry i can't, i've wrote the question unregistered :S
by
Useful info.: The question written by unregistered user should be able to be made the question written by own later. Click "I wrote this" link under question.
by
Awesome, it's done now :)
by
Wow! Thanks. I am sorry to be like coercive selling. ^_^;
Again, thanks.
...