您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop后台会员列表页怎么增加按手机查询会员
代荷2023-11-21 16:23:14ecshop商城教程已有人查阅
导读1、首先修改程序文件 admin/users.php找到;2、修改模板文件 admin/templates/users_list.htm找到
1、首先修改程序文件 admin/users.php找到
$filter['pay_points_lt'] = empty($_REQUEST['pay_points_lt']) ? 0 : intval($_REQUEST['pay_points_lt']);
在它下面增加一行代码
$filter['mobile_phone'] = empty($_REQUEST['mobile_phone']) ? 0 : trim($_REQUEST['mobile_phone']);
继续找到
if ($filter['pay_points_lt'])
{
$ex_where .=" AND pay_points < '$filter[pay_points_lt]' ";
}
在它下面增加下列代码
if ($filter['mobile_phone'])
{
$ex_where .=" AND mobile_phone like '%$filter[mobile_phone]%' ";
}
2、修改模板文件 admin/templates/users_list.htm找到
{$lang.label_user_name} <input type="text" name="keyword" />
在它后面增加代码手机号码:
<input type="text" name="mobile_phone" />
继续找到
listTable.filter['keywords'] = Utils.trim(document.forms['searchForm'].elements['keyword'].value);
在它下面增加一行代码
listTable.filter['mobile_phone'] = Utils.trim(document.forms['searchForm'].elements['mobile_phone'].value);
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop前台英文后台中文实现方法
前台英文后台中文对很多朋友来说应该是很重要的。我在安装时选择了英文语言包,安装成功后,把languages目录下 -
ecshop商品goods.html怎么自定义URL静态路径
需要改的地方有两个:include/lib_common.php和.htaccess这两个文件:1、找到ecshop并打开include/lib_common.php,找到文件中的build_uri函数。 -
ecshop购物车商品自动清空问题解决方法改善会员体验
ECSHOP程序的购物车会自动清空,而且有多个清空设置,防不胜防:1、当用户的IP变化后,购物车自动清空;2、当浏览器关闭后,购物车自动清空; -
商城ecshop共执行个查询用时秒增加在线人显示数量的方法
建站之初,网站的在线人数肯定不会很多,那么我们可以稍微修改下ECSHOP的程序,让页面底部显示的在线人数翻几番。
留言与评论 (共有 条评论) |