Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
732 views
in Q2A Core by
I mean I don't want the users choose the best answer by themselves.

Only admin have the permission to choose.

1 Answer

0 votes
by
 
Best answer

In qa-page-question.php, change this line:

$post['aselectable']=($post['type']=='Q') && !qa_user_permit_error($post['isbyuser'] ? null : 'permit_select_a');

... to ...

$post['aselectable']=($post['type']=='Q') && !qa_user_permit_error('permit_select_a');

...