Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
2.3k views
in Q2A Core by
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?

1 Answer

+1 vote
by

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.

...