1、打开./source/function/function_core.php 文件夹,查找:
换行添加:
2、打开./source/class/discuz/discuz_application.php 文件夹,查找:
- dheader("Location:misc.php?mod=mobile");
复制代码
修改为:
- //dheader("Location:misc.php?mod=mobile");
复制代码
就是把代码注释掉。
现在文件改好了,但默认是进入标准版的手机页面,想要可以进入触屏版页面,再继续往下看:
一、打开 static/js/mobile/common.js 文件,查找:
- var supporttouch = "ontouchend" in document;
- !supporttouch && (window.location.href = 'forum.php?mobile=1');
复制代码
修改为:
- //var supporttouch = "ontouchend" in document;
- //!supporttouch && (window.location.href = 'forum.php?mobile=1');
复制代码
就是把这两行代码也给注释掉,然后到论坛后台更新缓存。
|