织梦手机版搜索结果显示为电脑版的解决方法

有使用dedecms最新程序移动版的同学肯定遇到过,手机版搜索结果跳转到的是电脑版搜索结果页面去了。

解决方法

移动版模板搜索代码中要带有(<input type="hidden" name="mobile" value="1" />)

<form name="formsearch" action="/plus/search.php">
    <input type="hidden" name="pagesize" value="15">
    <input type="hidden" name="kwtype" value="0"/>
    <input type="hidden" name="mobile" value="1" />
    <input name="q" type="text" placeholder="输入关键词">
    <button type="submit">搜索</button>
</form>

然后打开 \plus\search.php 找到

$mid = (isset($mid) && is_numeric($mid)) ? $mid : 0;

在它的下面加入

if ( $mobile==1 )
{
    define('DEDEMOB', 'Y');
}

这样,移动版的搜索结果模板就是search_m.htm,搜索结果就可以显示为移动版了

猜你喜欢

转载自blog.csdn.net/dedehtml/article/details/80317587