论坛找了几个办法好像都没啥用
自己看了一下
找到/source/plugin/mobile/mobile.class.php
大概211-222行代码,删除了之后就没有显示
也没有发现搜索没有的
删除一下代码,请先备份再试,如果我错了,请不要骂我- class mobileplugin_mobile extends base_plugin_mobile {
- function global_header_mobile() {
- $useragent = strtolower($_SERVER['HTTP_USER_AGENT']);
- if(strpos($useragent, 'iphone') !== false || strpos($useragent, 'ios') !== false) {
- return lang('plugin/mobile', 'mobile_tip_ios');
- } elseif(strpos($useragent, 'android') !== false) {
- return lang('plugin/mobile', 'mobile_tip_android');
- } elseif(strpos($useragent, 'windows phone') !== false) {
- return lang('plugin/mobile', 'mobile_tip_wp7');
- }
- }
- }
复制代码 |