Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
2.7k views
in Q2A Core by
How i enable ckeditor for mobile phone? For mobile phone not load editor.
Q2A version: 1.7
by
Same problem

1 Answer

+3 votes
by
selected by
 
Best answer

CKEditor doesn't work properly on some mobile devices. So CKEditor developers decided that, when a mobile browser is detected, CKEditor should stop its initialization. That is not related to Q2A and there is no setting to enable that in Q2A.

Some official info here:

Some previous discussion on this forum here.
Now, if you still want to make it available to your users, at your own risk, you can add this to your qa-theme.php file:
 
public function body_script() {
    parent::body_script();
    $this->output('<script>CKEDITOR.env.isCompatible = true;</script>');
}
This will override the compatibility check and make it always enabled.
...