声明:以下方法仅供学习参考,提供一种解决问题的思路。请大家尊重知识产权,购买正版。
第一步:
通过 Firefox 浏览器开发者工具可以看到,Power by 的部分位于 <div class="powered_by_metinfo">
标签内。
第二步:
查看模板 foot.php 文件,发现标签内嵌套的代码是 {$c.met_agents_copyright_foot}
。
第三步:
用 SSH 登陆服务器,定位到网站根目录下。
第四步:
通过
grep "met_agents_copyright_foot" /wwwroot/ -nr
可以搜索到在 /wwwroot/app/system/include/class/view/compile.class.php
的 187、190、191
行出现相同内容。
第五步:
打开 compile.class.php
文件,找到
if($_M['config']['met_agents_switch']){
$config['met_agents_copyright_foot'] = $_M['config']['met_agents_index_footer'];
}
$config['met_agents_copyright_foot'] = str_replace(array('$metcms_v','$m_now_year'), array($config['metcms_v'],date('Y',time())), $config['met_agents_copyright_foot']);
$config['met_agents_copyright_foot'] = $this->replace_m($config['met_agents_copyright_foot']);
修改如下:
if($_M['config']['met_agents_switch']){
$config['met_agents_copyright_foot'] = $_M['config'][' '];
}
$config['met_agents_copyright_foot'] = str_replace(array(' ',' '), array($config['metcms_v'],date('Y',time())), $config['met_agents_copyright_foot']);
$config['met_agents_copyright_foot'] = $this->replace_m($config[' ']);
大功告成!
同时发现 /wwwroot/app/system/include/class/admin.class.php 的 446 行和
/wwwroot/app/system/include/public/ui/admin/foot_v2.php 的第 8 行以及
/wwwroot/app/system/include/public/ui/admin/footer.php 的第 5 行,均有相同内容。
猜测应该是后台的底部版权信息内容。未做验证。
以上是《米拓MetInfo 7.0去底部版权信息 方法思路》的全部内容,
感谢您对程序员阿鑫博客的支持!
版权说明
文章采用: 《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权。版权声明:未标注转载均为本站原创,转载时请以链接形式注明文章出处。如有侵权、不妥之处,请联系站长删除。敬请谅解!