Discuz教程网

Discuz! X3.2 论坛修改默认显示“触屏版”改为“手机版” 可自由切换

[复制链接]
authicon dly 发表于 2015-9-9 20:37:13 | 显示全部楼层 |阅读模式
使用手机访问论坛默认显示“触屏版”改为“手机版”,可实现“触屏版”跟“手机版”之间切换。(亲测,网上很多方法无法切换!)方法如下:

找到“\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'),
复制代码
找到“\source\function\function_core.php”
查找代码
  1. if(($v = dstrpos($useragent, $touchbrowser_list, true))){
  2.                 $_G['mobile'] = $v;  
  3.                 return '2';
  4. }
复制代码
修改为
  1. if(($v = dstrpos($useragent, $touchbrowser_list, true))){
  2.                 $_G['mobile'] = $v;
  3.                return '1';
  4. }
复制代码
说明:'mobiletpl' => array('1' => 'mobile', '2' => 'touch', '3' => 'wml','yes' => 'mobile'),代码中1为标准版,2为触屏版,3为电脑板

原文:http://www.discuz.net/thread-3682019-1-1.html




上一篇:9测模板_教师节 GBK_免费版_2015(2015.09.07更新)
下一篇:SendCloud邮件发送 2.0(2015.09.10更新)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

1314学习网 ( 浙ICP备10214163号 )

GMT+8, 2025-5-2 05:34

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表