For small devices you have to click on that book icon so the editor can be active.
And to make it paste media.
Please change this
in lib >> includes >> footer.php
tinymce.init({
selector: "textarea.tinyst, .advance_editor textarea",
menubar : false,
toolbar: "styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent",
placeholder : String,
setup: function (editor) {
editor.on('change', function () {
tinymce.triggerSave();
});
}
});
With
tinymce.init({
selector: "textarea.tinyst, .advance_editor textarea",
menubar : false,
plugins: "codesample, link, lists, image, media",
toolbar: "styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | codesample | link image media|",
placeholder : String,
image_caption : true,
setup: function (editor) {
editor.on('change', function () {
tinymce.triggerSave();
});
}
});