Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
310 views
in Plugins by
edited by
For instance to disable wysiwyg/ckeditor plugin or to use the basic q2a editor on IE v. 8 or less on a Windows Xp machine...
Q2A version: 1.6.3

1 Answer

+2 votes
by

You would be best off making a custom plugin that combines those two plugins. For example make a copy of the WYSIWYG plugin, then in the functions like get_field, do

if (/*code to check browser is IE < 8 */) {
    // code for plain editor
}
else {
    // code for WYSIWYG editor
}

 

...