Forums

[resolved] Can't switch to HTML view when posting or editing a page/post (8 posts)

  1. kosmonaut
    Member
    Posted 1 year ago #

    I'm using WordPress 3.0.1 and Thesis 1.8 theme.

    I just noticed that when I write or edit posts and pages, the HTML tab in the editor isn't clickable. It's visible, but when I click on it, it won't switch over to the HTML editor and stays stuck in the visual editor.

    Is there some setting I missed?

    I disabled all plugins and that didn't change anything.

    Thanks!

  2. Robierox
    Member
    Posted 1 year ago #

    I have had it with WordPress. One after another bug. Same problem here.

  3. Robierox
    Member
    Posted 1 year ago #

    Well, it seems to be a Safari problem. Works with Firefox.

  4. kevin
    Member
    Posted 1 year ago #

    Seems to be deeper than just a safari problem. I'm working a new site and i cant access it too with Chrome10, Safari5, FF4, Opera10 and ie9! Dont work for both posts and pages for this wp installation. On other sites with also wp 3.1, it's fine. Pretty annoying.

  5. kevin
    Member
    Posted 1 year ago #

    Update: just saw that i had both options (html and visual) at the same time in the 'visual' tab. None of the html options working though.

  6. kevin
    Member
    Posted 1 year ago #

    Update2: don't know if it's linked but i also cant drag and drop the items in the menu editor. Starting to get really annoying!

  7. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    Have you tried:

    - switching to the Twenty Ten theme to rule out any theme-specific problems.

    - resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.

    - re-uploading the wp-admin and wp-includes folders from a fresh download of WordPress.

    - increasing the memory available to PHP:
    http://wordpress.org/support/topic/253495#post-1017842

  8. kevin
    Member
    Posted 1 year ago #

    Found the bug, was from my functions.php file, i had:

    wp_deregister_script( 'jquery' );
    wp_register_script( 'jquery', ( 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' ), false, '1.x', true );

    which was interfering with the admin.
    So i updated to:

    if(!is_admin()) {
    	wp_deregister_script( 'jquery' );
    	wp_register_script( 'jquery', ( 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' ), false, '1.x', true );
    }

    And it all works fine.

Topic Closed

This topic has been closed to new replies.

About this Topic