Has anyone else had problems accessing the TinyMCE editor after upgrading from 4.7 to 5.1? After the upgrade we has several issues requiring a good bit of repair/rework. Once we got through that we found the text editor simply does not appear in the edit mode. We have uninstalled and reinstalled, deleted and changed the profile, logged out and in, etc. but to no avail.

Any suggestions? Thanks in advance

Comments

tkgafs’s picture

I had the same problem using Nick Lewis's curved_slate theme

I eventually tracked down the problem to the page.tpl.php file

I needed to add in <?php print $scripts; ?> at the top of the file after the print $head & print $styles lines

<head>
    <title><?php print $head_title ?></title>
    <?php print $head ?>
    <?php print $styles ?>
    <?php print $scripts ?>   /************* ADDED THIS LINE ****************/
    <style type="text/css" media="print">@import "<?php print base_path() . path_to_theme() ?>/print.css";</style>

In my case the link to disable rich text was visible but none of the tinymce stuff was there

this small change made it all burst into life

Tkgafs

Rima-1’s picture

We have been in the habit of using the custom theme of the external site for the admin area as well. Would that make a difference? Should we try a default theme for admin? I'll play with that to see if it helps.

Our vision is create a custom theme/template for the admin area to use with all sites we develop.