© 2002-2018 最模板 zuimoban.com 版权所有,并保留所有权利。
ecshop模板网,专注ecshop模板制作、ecshop二次开发服务!
相信很多使用ECSHOP的朋友都想要这个功能,网上也有很多类似的修改教程。
下面说一下我的方法,也比较简单,已在ECSHOP2.7.2版测试通过。
打开 /includes/modules/integrates/integrate.php 文件。
找到
if ($this->check_user($username, $password) > 0) |
if(is_email($username)) { $sql = "select ".$this->field_name." from ".$this->table($this->user_table)." where ".$this->field_email."='".$username."'"; $username = $this->db->getOne($sql); if(!$username) return false; } |
是不是挺简单的。
其他版本的ECSHOP,站长没有亲自测试,相信也可以用此方法来解决。