DedeCms 5.7新版发布,下来上传至服务器安装完毕,点击进入后台登陆界面,妈妈的,怎么多了广告链,而且登陆界面也变了,以前可不带这样的 […]
1,查看html源文件,找到广告部分代码如下:
<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>
<title><?php echo $cfg_softname." ".$cfg_version; ?></title>
为:
<title><?php echo $cfg_webname; ?> - 后台管理登陆</title>
2,仔细分析发现“login.php?dopost=showad”对应的是login.php第42到46行部分代码,去掉这部分代码即可:
if ($dopost=='showad')
{
include('templets/login_ad.htm');
exit;
}
<?php
exit;
} else if ($dopost=='showauth')
{
include('templets/index_body_showauth.htm');
exit;
} else if ($dopost=='showad')
{
include('templets/index_body_showad.htm');
exit;
}
?>
替换为:
<?php
exit;
}
?>
删除删除模板目录里对应的模板文件“index_body_showad.htm”和“index_body_showauth.htm”。
2,修改模板index_body.htm,涉及修改内容为:标题部分/广告链部分/开发团队部分等,此处省略具体步骤。
3,后台顶部版权信息及链接主要修改index_top2.htm和index2.htm两个模板文件。
4,右栏细节部分去处DedeCMS主要涉及3个模板文件:sys_data.htm/sys_info_mark.htm/sys_info.htm。
5,去掉左栏“系统帮助”,修改模板文件为:/dede/inc/inc_menu.php
至此,基本全部完成后台去广告链和版权操作,简洁清爽的dedecms5.7后台界面呈现在我们面前。