Quick Tip: Fix Visual Editor / TinyMCE in WordPress

I recently had an interesting problem where the Visual Editor (or TinyMCE) wasn’t working in WordPress. 4.0. I tried the normal stuff as recommended by most forums and blog posts, including…

  • Disabling all plugins
  • Disabling the theme/using a default one
  • Reinstalling WordPress
  • Making Sure “Disable Visual Editor…” was not checked.

None of those worked so I decided to try saving my user profile with “Disable Visual Editor…” unchecked. The exact steps I took were:

  1. Go to Users -> my User Profile
  2. Check “Disable Visual Editor…”
  3. Save Profile
  4. Uncheck “Disable Visual Editor…”
  5. Save Profile

That managed to fix the Visual Editor. I hadn’t seen the suggestion in my travels, so hopefully this will save people some time.

Similar Posts

  • |

    Some Truths About Web Design

    I’ve been thinking a lot about the changing landscape of web design and development, and I believe there’s already a fast-moving shift in how customers are approaching getting online. I may elaborate more later, but here are the overall thoughts.

  • |

    Do we REALLY Need to Own Our Platform?

    Last week’s Facebook outage brought an onslaught of platitudes from people talking about how terrible Facebook is, and how you should own your own platform. But even as a developer myself, my thoughts are a little different.

  • My WordCamp Philly Talk is Online

    Back in October I gave a talk at WordCamp Philly about Building a Simple WordPress Theme Framework. I’m very excited to announce that a video of the talk is up over at WordPress.tv. Head on over there to look at the video, or watch it after the jump!

  • |

    WordPress Helper Functions for Detecting IE

    The other day I was working on a problem where I wanted to check if a website was using a specific browser (in this case IE) and version (in this case 9 or below). I came up with 2 functions that would serve an a nice, reusable check for both. These can also be extended…

  • |

    Add Attachments to WordPress Search Results

    I feel like this has to have been done a lot, and there are great plugins out there for it, but if you’re just looking to add a quick function to your theme (or a really simple plugin) yourself, here’s how to modify WordPress’ search query to include attachments (like images). function attachment_search( $query ) {…