如何取消mobile 登入

2016-07-07 15:13 来源:www.chinab4c.com 作者:ecshop专家

請問各位, 怎樣可以取消用手機上網時, 不要自動跳入mobile 版面.

當開啟WAP 功能時, 用手機上網就會自動跳入MOBILE 版面, 但不開啟的話, 就出現"對不起, 暫時沒有開啓手機購物功能".

怎樣能跳回index 正常版面.

謝謝.

回答:
打开 index.php
删除以下代码
  1. $ua = strtolower($_SERVER['HTTP_USER_AGENT']);

  2. $uachar = "/(nokia|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|mobile)/i";

  3. if(($ua == '' || preg_match($uachar, $ua))&& !strpos(strtolower($_SERVER['REQUEST_URI']),'wap'))
  4. {
  5. $Loaction = 'mobile/';

  6. if (!empty($Loaction))
  7. {
  8. ecs_header("Location: $Loaction\n");

  9. exit;
  10. }

  11. }
复制代码

后台有得取消吧?在后台网店设置里关闭就可以了。

后台有得取消吧?在后台网店设置里关闭就可以了。
bibi8451 发表于 2013-1-16 23:21


楼上没看清楼主的要求,人家楼主都说了,要是后台关闭的话,手机访问会提示 “你没有开启手机购物功能”,

謝謝指教, 已經刪除,
但出現以下信息
Warning: Cannot modify header information - headers already sent by (output started at /www/www/ecshop/index.php:1) in /www/www/ecshop/includes/init.php on line 165

Warning: Cannot modify header information - headers already sent by (output started at /www/www/ecshop/index.php:1) in /www/www/ecshop/includes/init.php on line 166

Warning: Cannot modify header information - headers already sent by (output started at /www/www/ecshop/index.php:1) in /www/www/ecshop/includes/cls_template.php on line 58

Warning: Cannot modify header information - headers already sent by (output started at /www/www/ecshop/index.php:1) in /www/www/ecshop/includes/lib_main.php on line 1103

應如何處理, 謝謝.


打开 index.php
删除以下代码
路边野猪 发表于 2013-1-16 18:26

對的, 關閉WAP 功能後, 手機沒法顯示.


楼上没看清楼主的要求,人家楼主都说了,要是后台关闭的话,手机访问会提示 “你没有开启手机购物功能” ...
路边野猪 发表于 2013-1-17 11:18

謝謝指教, 已經刪除,
但出現以下信息
Warning: Cannot modify header information - headers already sen ...
pop-up 发表于 2013-1-18 17:52


你使用的编辑软件有问题,导致你修改完保存的时候加入了肉眼看不到的BOM,
要使用专业的编辑软件,例如editplus,保存的时候要保存成无BOM格式的

己完成, 非常感謝.


支持啊嗷嗷嗷

己完成, 非常感謝.

回复路边野猪
pop-up 发表于 2013-1-19 18:22


不客气,




我也想知道这个答案。