无限星辰工作室-客户无限互联网动力之源

标题: Discuz!X 手机访问默认触摸屏版修改教程 [打印本页]

作者: crx349    时间: 2014-1-27 11:28
标题: Discuz!X 手机访问默认触摸屏版修改教程
方法一:
1、找到“\source\class\discuz\discuz_application.php”,将其中的
  1. 'mobiletpl' => array('1' => 'mobile', '2' => 'touch', '3' => 'wml','yes' => 'mobile'),
复制代码


改为

  1. 'mobiletpl' => array('1' => 'mobile', '2' => 'touch', '3' => 'wml','yes' => 'touch'),
复制代码


2、上面的修改已经成功了,但是顶部会有“用掌上论坛访问本站,拥有更好阅读体验”的一小段文字,现在把它删掉。

找到“\source\plugin\mobile\mobile.class.php”,将其中的

  1. if(strpos($useragent, 'iphone') !== false || strpos($useragent, 'ios') !== false) {
  2. return lang('plugin/mobile', 'mobile_tip_ios');
  3. } elseif(strpos($useragent, 'android') !== false) {
  4. return lang('plugin/mobile', 'mobile_tip_android');
  5. } elseif(strpos($useragent, 'windows phone') !== false) {
  6. return lang('plugin/mobile', 'mobile_tip_wp7');
  7. }
复制代码



删掉或者注释掉,就完全OK了。

方法二:
把source/function下的function_core.php
  1. if(dstrpos($useragent, $pad_list)) {
  2.                 return false;
  3.         }
  4.         if(($v = dstrpos($useragent, $mobilebrowser_list, true))){
  5.                 $_G['mobile'] = $v;
  6.                 return '1';
  7.         }
  8.         if(($v = dstrpos($useragent, $touchbrowser_list, true))){
  9.                 $_G['mobile'] = $v;
  10.                 return '2';
  11.         }
  12.         if(($v = dstrpos($useragent, $wmlbrowser_list))) {
  13.                 $_G['mobile'] = $v;
  14.                 return '3'; //wml版

  15. }
复制代码

        

改为

  1. if(dstrpos($useragent, $pad_list)) {
  2.                 return '2';
  3.         }
  4.         if(($v = dstrpos($useragent, $mobilebrowser_list, true))){
  5.                 $_G['mobile'] = $v;
  6.                 return '2';
  7.         }
  8.         if(($v = dstrpos($useragent, $touchbrowser_list, true))){
  9.                 $_G['mobile'] = $v;
  10.                 return '2';
  11.         }
  12.         if(($v = dstrpos($useragent, $wmlbrowser_list))) {
  13.                 $_G['mobile'] = $v;
  14.                 return '3'; //wml版
  15.         }
复制代码





欢迎光临 无限星辰工作室-客户无限互联网动力之源 (https://xmspace.net/) Powered by Discuz! X3.4