删除dede织梦后台登陆页面的底部广告

现在dede织梦CMS的系统是越来越繁琐了,既然在后台系统加入了那么多广告,dede5.7连登陆页面底部都加了个图片广告(/dede/),今天就告诉大家怎么删除一些后台的 广告吧,因为这些广告会影响后台的加载速度,确实有必要删除它。 登陆页面底部的图片广告删除方法: 默认的dede系统后台路径是/dede/login.php文件,使用的模板是 uploads\dede\templets\login.htm 找到这个login.htm即可;使用DW或记事本打开,啦到最下面有代码: <div class="dede-iframe"><iframe name="loginad" src="login.php?dopost=showad" frameborder="0" id="loginad" scrolling="no" marginwidth="0" marginheight="0" width="100%"></iframe></div> 把以上代码删除即可,这样登陆页面就清爽了许多。 删除后台系统菜单中的赞助商广告: 找到文件夹uploads\dede\templets\index_body.htm 打开=》 找到: <dl class='dbox' id="item8"> <dt class='lside'><div class='l'>赞助商链接(<a href="http://ad.dedecms.com/ad/" target="_blank">说明</a>)</div></dt> <dd> <iframe name="showad" src="index_body.php?dopost=showad" frameborder="0" width="100%" id="showad" frameborder="0" scrolling="no" marginheight="5"></iframe> dedecms.com </dd> </dl><!--赞助商链接结束--> 删除这个: <iframe name="showad" src="index_body.php?dopost=showad" frameborder="0" width="100%" id="showad" frameborder="0" scrolling="no" marginheight="5"></iframe> 这个就是框架调用的代码。 这样删除了广告,后台加载速度就会快些了。不会卡死了。