Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Jan 18: 1.5 release

How to disable the answer to your question?

+1 vote
asked Aug 19, 2010 in Q2A Core by Alzim

3 Answers

0 votes
 
Best answer
EXAMPLE!!!

------------------------------
As to ban it?
answered Aug 24, 2010 by Alzim
How do I prevent myself the best answer?
+1 vote
Hello Alzim,

if Your question is about deleting an answer, You can hide them and later delete them by using the links added to each answer at the bottom.

If You want to disable answering completely, You could visit admin->permissions->answering set to: Experts, Editors,Moderators, Admins

Otherwise please explain more exactly

Rgds
monk333
answered Aug 24, 2010 by monk333
Hello, monk333
How do I prevent the user to answer the question he asked?
Deny yourself the best answer?
Sorry for bad English.

Привет, monk333
Как запретить пользователю ответить на вопрос, который он задал?
Запретить себе лучший ответ?
Извиняюсь за плохой английский.
I dont know russian ??

But Your english is very good.

I dont know how to prevent this, but I often answer my own questions. The thing is You do not get points for answering Your own question or select it as best.
thank you!     .
+1 vote
To prevent users answering their own question, change this in qa-page-question.php:

$post['answerbutton']=($post['type']=='Q') && ($permiterror_post_a!='level');

... to ...

$post['answerbutton']=($post['type']=='Q') && ($permiterror_post_a!='level') && !$post['isbyuser'];
answered Aug 29, 2010 by gidgreen