Hi Mitchell,
Thanks for providing your version. That’s strange as it is a version we have already tested.
Because you mentioned you have turned off other plugins (that may have altered the default WordPress editor), two things come to my mind. Either you have another editor installed other than the default editor OR the name of editor has been changed due to possible compression/optimization of your WordPress.
Can you provide a screenshot of what your “Edit Post” page looks like.
Also, if you are confident enough (as you have found the error message in the JavaScript console), could you 1) go to the “Edit Post” page, 2) copy and paste the following code into the same JavaScript console where you saw the error, and 3) copy/paste the resulting message here? (Note: all the code does below is searches for the editor and reports the names of the variables.) You can also email the results to me instead at: [email protected]
var windowVars = Object.keys(window);
var found = false;
for (var ii = 0, nn = windowVars.length; ii < nn; ii++)
{
if (window[windowVars[ii]] && typeof window[windowVars[ii]].Editor == "function")
{
console.log('Editor found in '+windowVars[ii]);
found = true;
}
}
if (!found)
{
console.log('Editor not found. Printing all variable names:',JSON.stringify(windowVars));
}
Let me know how that goes. Thanks!
Sincerely,
Joseph
Twinword Inc.