Support » Fixing WordPress » 3.3.1 New Bullet lists bug?

  • I have noticed since updating to 3.3.1 the bullet lists no longer give me multi levels. Only a single level. When I post, the HTML automatically rewrites itself.

    I’m running the Arras WP Theme.

    Thanks.
    Donna

Viewing 2 replies - 1 through 2 (of 2 total)
  • Have you tried:

    – deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    – switching to the Twenty Eleven 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.

    .

    I have this problem as well with 3.3.1. The code in the editor re-writes every time.

    I have changed to the Twenty Eleven theme and deactivated all plugins. I also removed all plugin directories except for akismet which comes with.

    The editor still re-writes the list as follows:

    original:

    <ul>
      <li>item 1</li>
      <li>item 2</li>
      <ul>
        <li>item 2a></li>
        <li>item 2b></li>
      </ul>
      <li>item 3</li>
    </ul>

    re-written as:

    <ul>
      <li>item 1</li>
      <li>item 2</li>
    </ul>  <ul>
        <li>item 2a></li>
        <li>item 2b></li>
      </ul>
      <li>item 3</li>

    Note how the last list item has no opening or closing <ul>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘3.3.1 New Bullet lists bug?’ is closed to new replies.