全国400电话网上服务平台
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
怎么将织梦图集模型编辑器改为文章编辑器?
POST TIME:2017-11-12 23:35
图集编辑器:
文章编辑器:
修改方法如下:
将/dede/templets/album_edit.htm 中的
<?php GetEditor("body",$body,450,"Diy"); ?> |
换成
<?php GetEditor("body",$addRow['body'],450); ?> |
将/dede/templets/album_add.htm 中的
<?php GetEditor("body","",450,"Diy"); ?> |
换成
<?php GetEditor("body",$addRow['body'],450); ?> |
编辑器的宽度不够用的话,可以改下这个td的宽度,默认为800,改为1100
<tr> <td height="24" colspan="4" class="bline"><table width="1100" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="90"> 图集内容:</td> <td><?php GetEditor("body",$addRow['body'],1100); ?></td> </tr> </table></td> </tr> |