Joke Collection Website - Public benefit messages - How to remove the verification code function of ECSHOP JD.COM V4.2 from the user registration page (PHP)?

How to remove the verification code function of ECSHOP JD.COM V4.2 from the user registration page (PHP)?

1, languages/zh_cn/user.php under general project.

The verification code of the pop-up phone and email address cannot be empty. Comment! !

2. register.php under the general project.

Find the verification code of mobile phone and email to view comments! The following is the comment code

E-mail:

/*if(empty($email_code))

{

show _ message($ _ LANG[' msg _ email _ code _ blank '],$_LANG['sign_up'],' register.php ',' error ');

}

else if($session _ email! = $ E-mail)

{

show _ message($ _ LANG[' email _ changed '],$_LANG['sign_up'],' register.php ',' error ');

}

else if($email _ code! = $record['record_code'])

{

show _ message($ _ LANG[' invalid _ email _ code '],$_LANG['sign_up'],' register.php ',' error ');

}*/

Mobile phone:

/*if (empty ($mobile_code))

{

show _ message($ _ LANG[' msg _ mobile _ phone _ blank '],$_LANG['sign_up'],' register.php ',' error ');

}

//Check whether the mobile phone number that sent the SMS verification code matches the submitted mobile phone number.

else if($session _ mobile _ phone! = $mobile_phone)

{

show _ message($ _ LANG[' mobile _ phone _ changed '],$_LANG['sign_up'],' register.php ',' error ');

}

//Check whether the verification code is correct.

else if($record['record_code']! = $mobile_code)

{

show _ message($ _ LANG[' invalid _ mobile _ phone _ code '],$_LANG['sign_up'],' register.php ',' error ');

}

//Check the expiration time

else if($ record[' expired _ time ']& lt; Time ())

{

show _ message($ _ LANG[' invalid _ mobile _ phone _ code '],$_LANG['sign_up'],' register.php ',' error ');

}*/