我正在尝试使用电话号码而不是电子邮件 ID 注册客户,因此想删除电子邮件地址验证
谢谢!!
你可以试试这个:
在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');
}
并将其注释掉。
希望这对您有所帮助。