2

试图让字体插件与 django cms 文本编辑器一起工作。我已将插件文件夹添加到.../djangocms_text_ckeditor/static/djangocms_text_ckeditor/ckeditor_plugins.../djangocms_text_ckeditor/static/djangocms_text_ckeditor/ckeditor/plugins.

这是我添加到我的 settings.py

#----------------------------------------------------------
#                   Text Editor
#----------------------------------------------------------
CKEDITOR_CONFIGS = {
    'toolbar' : 'CMS',
    'toolbar_CMS': [
        ['Undo', 'Redo'],
        ['cmsplugins', '-', 'ShowBlocks'],
        ['font']
    ],
    'extraPlugins': 'font',
}

在我的 cms 页面中编辑任何文本插件时,该插件不显示。我错过了什么或做错了什么?

4

1 回答 1

2

这是一个小问题,所以我想你现在已经解决了这个问题。对于来这里寻找信息的其他人,toolbar_CMS 中的“字体”需要大写,以便正确的代码看起来像

#----------------------------------------------------------
#                   Text Editor
#----------------------------------------------------------
CKEDITOR_CONFIGS = {
    'toolbar' : 'CMS',
    'toolbar_CMS': [
        ['Undo', 'Redo'],
        ['cmsplugins', '-', 'ShowBlocks'],
        ['Font']
    ],
    'extraPlugins': 'font',
}
于 2016-08-01T20:52:27.390 回答