织梦dedecms图片/软件模型下编辑(框)器功能显示不全修复方法
原图片/软件模版编辑框
修改方法:
一、图片模型
1.打开后台目录/templets/album_add.htm找到
<td> <?php GetEditor("body","",450,"Diy"); ?></td>
替换下面代码
<td> <?php GetEditor("body","",450); ?></td>
2.打开后台目录/templets/album_edit.htm找到
<td><?php GetEditor("body",$body,450,"Diy"); ?></td>
替换下面代码
<td><?php GetEditor("body",$body,450); ?></td>
二、软件模型
1.打开后台目录/templets/soft_add.htm找到
GetEditor('body', '', 250, 'Small');
替换下面代码
GetEditor('body', '', 250);
2.打开后台目录/templets/soft_edit.htm找到
GetEditor("body",$addRow["introduce"],250,"Small");
替换下面代码
GetEditor("body",$addRow["introduce"],250);
免责声明:本站所有文章和图片均来自用户分享和网络收集,文章和图片版权归原作者及原出处所有,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服处理。
以上就是 织梦dedecms图片/软件模型下编辑(框)器功能显示不全修复方法 的介绍,希望大家喜欢!
更多教程关注FF推源码网。