• Resolved Lyric1973

    (@lyric1973)


    I just updated to 3.5.2 on Sunday and I am unable to use my normal visual editor and I can only type when I enter full screen mode on the text editor. I cannot see past entries in old posts in the editor. I can see them on the site. I am using a Macbook Pro on Safari. I have no issues when I’m on a Microsoft machine on Internet explorer. I’ve looked for recent problems or those close to mine and could not find any so I started my own help topic. Please help..

Viewing 11 replies - 1 through 11 (of 11 total)
  • What do you mean by you cannot use it?

    Are the buttons there, or are they missing?

    Just to test if it’s a javascript issue… go to your widget admin area and see if you can “drag” a widget.

    Thread Starter Lyric1973

    (@lyric1973)

    I was able to drag a widget over to place it in the side bar of my site from the admin role.

    Try clearing your browser cache and cookies.

    Thread Starter Lyric1973

    (@lyric1973)

    The only visual button on the visual editor is “add media” and I have a plug in that allows me to add an MP3 player. I can see that but the normal Font, link, break the link, alignment, block quote icons, and all the other options are not there anymore. I’ve been posting by clicking on text editor and then full screen mode.

    Try temporarily deactivating all of your plugins… then manually refresh your browser cache… then try again.

    If that doesn’t work… switch to the default TwentyTwelve theme… manually refresh your browser cache.. and try again.

    Also, go to your profile – and see if Disable the visual editor when writing is checked.

    Thread Starter Lyric1973

    (@lyric1973)

    i cleared the cookies and cache. i also reset Safari. i’ve checked my profile and the visual editor isn’t disabled. I’ll try the deactivation of my plugins and the switch to the default TwentyTwelve theme. we’ll see how it goes

    Thread Starter Lyric1973

    (@lyric1973)

    Thanks!!! It worked.. I’m so happy.. YOu all are the beSt!!!

    teratosis

    (@teratosis)

    I had this issue on 3.8. I just updated all my plugins and voila it’s back. No caching, no editing files.

    One nuisance about wordpress “Distraction-Free Writing mode” is that, sink kitchen buttons will not show up in that mode. To resolve this, we need add the following code to functions.php of your theme:

    function my_mce_fullscreen($buttons) {
    $buttons[] = ‘fullscreen’;
    return $buttons;
    }
    add_filter(‘mce_buttons’, ‘my_mce_fullscreen’);

    More details can be found here: resolved – show kitchen sink buttons when wordpress goes to fullscreen mode

    One nuisance about wordpress “Distraction-Free Writing mode” is that, sink kitchen buttons will not show up in that mode. To resolve this, we need add the following code to functions.php of your theme:

    function my_mce_fullscreen($buttons) {
    $buttons[] = ‘fullscreen’;
    return $buttons;
    }
    add_filter(‘mce_buttons’, ‘my_mce_fullscreen’);

    More details can be found here: resolved – show kitchen sink buttons when wordpress goes to fullscreen mode

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Visual Editor missing tool bar and only able to type in Full screen text edit’ is closed to new replies.