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.

Apr 29: Q2A 1.5.2

I want registered / anonymous only to be able to use basic editor to post question and Moderators to use WYSIWYG?

+1 vote
To prevent dubious links popping up all over our Q&A I would like registered users and anonymous posters to use the basic editor to post questions answers and for the moderators of the Q&A to be able to use the WYSIWYG. Has any body adapted the code for this functionality?
asked Mar 18, 2011 in Q2A Core by apj

1 Answer

0 votes

You could add the following to the start of function qa_load_editor(...) in qa-app-format.php:

if (qa_get_logged_in_level()<QA_USER_LEVEL_MODERATOR)
  $editorname='';

The setting in the admin panel would determine what moderators use.

answered Mar 20, 2011 by gidgreen