Remove path in status bar in TinyMCE4

ChibiTomo picture ChibiTomo · Jun 19, 2013 · Viewed 16.3k times · Source

I have just migrated from TinyMCE3 to TinyMCE4 and I wonder how to remove the path in the status bar. But I want to keep my status bar in order to have the resize functionnality.

With TinyMCE3 we can do it with:

tinymce.init({
    ...
    theme_advanced_path : false
});

How can I have the same result with TinyMCE4?

Thanks

Answer

Beck Johnson picture Beck Johnson · May 6, 2015

In TinyMCE 4 you can remove just the path in the statusbar by setting the configuration elementpath to false, like this:

tinymce.init({ elementpath: false });