Search code examples
joomlajoomla2.5joomla1.7joomla1.6

How to hide the toogle editor from the tinymce editor


My XML is as shown below. Everything except the toogle editor button becomes hidden from the editor. Is there any other code to fix the problem.

<field name="description"
    type="editor"
    cols="20"
    label="COM_TEST_DESCRIPTION_LBL"
    description="COM_TEST_DESCRIPTION_DESC"
    class="inputbox"
    filter="JComponentHelper::filterText"
    buttons="true"
    hide="readmore,pagebreak,image,article,toogle editor"
/>

Solution

  • The simplest way would be to use CSS styling to disable the visibility of this button:

    .toggle-editor {
        display: none;
    }