dedecms更换百度UEditor编辑器后栏目内容无法保存


avatar
pcwnas 2023-04-21 222

原文来自:https://www.zixuephp.com

dedecms更换百度编辑器操作栏目时,无法保存栏目的第三个选项,内容,

下面我针对这个BUG做出2种修改方案。

第一种,换回之前的ckediter编辑器

文件位置:/dede/templates/catalog_edit.htm、/dede/templates/catalog_add.htm

查找:

GetEditor("content","","450","Default","print","false");

在此上面插入红色的代码部分;

<?php
$GLOBALS[‘cfg_html_editor’]=’ckeditor';
GetEditor(“content”,””,”450″,”Default”,”print”,”false”);
?>

经测试完全可行!

第二种,完全使用ueditor,不替换原来编辑器

文件位置/dede/templates 文件 catalog_edit.htm、catalog_add.htm

查找

functioncheckSubmit()
{
if(document.form1.typename.value==""){
alert("栏目名称不能为空!");
document.form1.typename.focus();
returnfalse;
}returntrue;
}

在函数最后的 return true();前加一行:

document.form1.content.value=
document.getElementById(“baidu_editor_0″).contentWindow.document.body.innerHTML;

经测试会出现标签无法点击的问题!