禁用特定CKEditor的插件

时间:2016-11-15 09:51:24

标签: plugins ckeditor

如何禁用特定CKEditor的插件?我有一个CKeditor你在哪里发帖子,另一个用来评论那个帖子。我想要的帮助是在评论编辑器上禁用插件。

例如:

评论编辑器有id influxdb有没有办法只为这个编辑器禁用插件?

1 个答案:

答案 0 :(得分:0)

解决:

我所要做的就是创建自定义配置文件custom_config.js并复制config.js中的内容。

CKEDITOR.editorConfig = function(config) {

    config.mathJaxLib = '//cdn.mathjax.org/mathjax/2.6-latest/MathJax.js?config=TeX-AMS_HTML';
    config.extraPlugins = 'lineutils,mathjax,widget';
    config.toolbar = [
       ['Styles'],['Bold','Italic','Underline'],
       ['NumberedList','BulletedList'],
       ['Image','Table','-','Link','Flash','Smiley','TextColor','BGColor']
    ];
};

之后我将编辑器链接到该配置文件:

<textarea name="new_comment" id="CKEditor_<?=$getpost['post_id']?>" placeholder="Write something ..."></textarea>
<script>
    CKEDITOR.replace('CKEditor_<?=$getpost['post_id']?>',{
         customConfig : '/website/ckeditor/custom_config.js',
    });
</script>