0

Can anybody give me a hint, how to remove that "Text Mode" button of TinyMCE?

enter image description here

Badeoel
  • 197
  • 2
  • 13

2 Answers2

0

I found a soltion here - just disabling the button in css:

.toggle-editor {
    display: none;
}
Community
  • 1
  • 1
Badeoel
  • 197
  • 2
  • 13
-1

http://www.tinymce.com/tryit/3_x/toggle_editor.php

The code used is:

toggleEditor('content')

If you want the editor mode to be toggled based on the option chose by the user from another page, you can execute (or not to) the above function on page load.

There are links to other examples on that page which you might find useful too.

Acelasi Eu
  • 914
  • 2
  • 9
  • 30
  • No, I just wanted to remove the button visually. Thank you for your effort, I found a solution myself. – Badeoel Jan 20 '14 at 13:55