TinyMCE editor is not showing up after publishing. Though, it works on localhost. Here\'s what I see:
You need to provide baseURL
to tinyMCE before initialising it. You can do that right before tinymce.init({...})
. Often, it works on localhost without this but on server it is not able to find the tinymce root directory.
According to TinyMCE Docs,
"property: baseURL
, type: String
, Description: Base URL where the root directory of TinyMCE is located."
Example:
tinyMCE.baseURL = "PATH/TO/tinymce/directory/";
tinyMCE.init({
theme : "simple",
...
});