CKEditor Hide按钮没有隐藏功能

时间:2018-02-15 11:38:40

标签: function button ckeditor hide

我正在使用CKEditor,我希望hide a button保留这些功能。换句话说,我想隐藏图像按钮,同时保持显示所有现有图像 我的页面

我尝试使用config.js文件:

- config.removeButtons = 'Image'; 
- config.removePlugins = 'elementspath,image';

但是我的html页面中的所有现有图像都消失了。 我在Table按钮上遇到了同样的麻烦。

1 个答案:

答案 0 :(得分:0)

使用CSS:

.cke_button__image, .cke_button__table {
    display: none !important;
}