1

我正在尝试使用电话号码而不是电子邮件 ID 注册客户,因此想删除电子邮件地址验证

谢谢!!

4

1 回答 1

2

你可以试试这个:

catalog/controller/checkout/register.php

查找(第 149 行):

if ((utf8_strlen($this->request->post['email']) > 96) || !filter_var($this->request->post['email'], FILTER_VALIDATE_EMAIL)) {
    $json['error']['email'] = $this->language->get('error_email');
}

并将其注释掉。

catalog/controller/checkout/guest.php

查找(第 203 行):

if ((utf8_strlen($this->request->post['email']) > 96) || !filter_var($this->request->post['email'], FILTER_VALIDATE_EMAIL)) {
    $json['error']['email'] = $this->language->get('error_email');
}

并将其注释掉。

希望这对您有所帮助。

于 2016-10-12T18:22:01.490 回答