Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
260 views
in Plugins by
edited by
Basic editor for non logged in users and sceditor for logged in users https://github.com/q2apro/q2apro-sceditor
by
I didn't have the answer right away, but I'm working on this. Still need to find the mechanism. But which editors for each case?
by
Basic editor for non logged in users and sceditor for logged in users https://github.com/q2apro/q2apro-sceditor
by
If you don't load the javascript files of Sceditor, then you have a basic editor.

https://github.com/q2apro/q2apro-sceditor/blob/master/q2apro-sceditor-layer.php

Modify the head_script with:
function head_script(){
       if (qa_is_logged_in()){
// put all those things in here

}

}// end of head_script function

Please log in or register to answer this question.

...