Jump to content

Help to checkout (Phone number) (SOLVED)


Recommended Posts

Hello! 

 

I did the wrong thing.. I copied the thing you wrote, but in the wrong place.. Now I can find the code I overwrite.. I talking about the code which stands in the classes/Validate.php line 29-32? Hope you understand my question and you can find the code!

 

Thank you

Link to comment
Share on other sites

line 516

there is code:
 

	public static function isPhoneNumber($number)
	{
		return preg_match('/^[+0-9. ()-]*$/', $number);
	}

change it to:

public static function isPhoneNumber($number){
  if (strlen($number)==8){
    return preg_match('/^[+0-9. ()-]*$/', $number);
  }else{
   return false;
  }
}
Link to comment
Share on other sites

 

line 516

there is code:

 

	public static function isPhoneNumber($number)
	{
		return preg_match('/^[+0-9. ()-]*$/', $number);
	}

change it to:

public static function isPhoneNumber($number){
  if (strlen($number)==8){
    return preg_match('/^[+0-9. ()-]*$/', $number);
  }else{
   return false;
  }
}

 

That helped on the phone number, but now i get these messages when I type in my First name, Last name & city

post-735780-0-95183000-1389738874_thumb.png
 
If you want to take a look at my code, here it is: (http://codepad.org/HzCWTaQd) I think it is from an other version.... do you have the one fitting for my version ?
Link to comment
Share on other sites

what does these messages mean?

weird, because isPhone function aren't related to other fields. only to phone field, nothing more.

it says that First name, Last name & city is wrong...

 

But I am wondering if you have the default validate.php file to prestashop verison 1.5.4.1 ?

Because my friend did something wrong when adding the code :/ and if i get the default one for this verison i can change it myself :)

 

Best regards

Jacob

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...