帝国CMS7.5会员中心添加html编辑器
2018-12-04 站长 站长日志
帝国cms一直以来会员中心字段都不能用html编辑器,添加如下。
1、找到“/e/data/html/memberfhtml.txt”,末尾添加如下:
[!--html--]
<?=ECMS_ShowEditorVar("[!--enews.var--]",$ecmsfirstpost==1?"[!--enews.def.val--]":htmlspecialchars_decode(stripSlashes($addr[[!--enews.var--]])),"Default","","300","100%")?>
[!--html--]
2、找到“/e/admin/member/AddMemberF.php”,搜索“输入表单显示元素”,改成:
<select name="fform" id="fform">
<option value="text"<?=$formtext?>>单行文本框(text)</option>
<option value="password"<?=$formpassword?>>密码框(password)</option>
<option value="select"<?=$formselect?>>下拉框(select)</option>
<option value="radio"<?=$formradio?>>单选框(radio)</option>
<option value="checkbox"<?=$formcheckbox?>>复选框(checkbox)</option>
<option value="textarea"<?=$formtextarea?>>多行文本框(textarea)</option>
<option value="img"<?=$formimg?>>图片(img)</option>
<option value="file"<?=$formfile?>>文件(file)</option>
<option value="html"<?=$formhtml?>>编辑框(html)</option>
</select>
3、找到“/e/admin/member/AddMember.php”,在头部的php代码里面的末尾添加:
//html编辑器
include('../ecmseditor/eshoweditor.php');
$loadeditorjs=ECMS_ShowEditorJS('../ecmseditor/infoeditor/');
?>
4、新建字段选择“编辑器(html)”就好了