How to hide the toogle editor from the tinymce editor

爱⌒轻易说出口 提交于 2019-12-01 23:03:11

问题


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"
/>

回答1:


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

.toggle-editor {
    display: none;
}


来源:https://stackoverflow.com/questions/12138275/how-to-hide-the-toogle-editor-from-the-tinymce-editor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!