AbanteCart Community

Shopping Cart Operations => Support => Topic started by: josephnwy on March 18, 2014, 06:10:02 AM

Title: Guest Checkout First Name limit
Post by: josephnwy on March 18, 2014, 06:10:02 AM
Hi, i am a newbie.

Guest check out information about the "FIRST NAME" fill up, is it possible to change the minimum character to 2 instead of 3?

Thank you.
Title: Re: About Guest Check Out
Post by: gordontaylor on March 18, 2014, 09:10:42 AM
To be clear, you're saying that you want to change the minimum characters in the name field from 3 to 2?

If that is what your asking, you'll need to do some code changes. Do you have that knowledge?
Title: Re: About Guest Check Out
Post by: josephnwy on March 18, 2014, 01:18:21 PM
yes. i want to change the minimum input of 3 to minimum 2.

where is the file located?  :D
Title: Re: About Guest Check Out
Post by: gordontaylor on March 18, 2014, 03:54:37 PM
The path to that file is

storefront>view>default_html5>template>pages>checkout>guest_step_1.tpl
Title: Re: About Guest Check Out
Post by: eCommerce Core on March 18, 2014, 03:59:47 PM
Looks at:
https://github.com/abantecart/abantecart-src/blob/6be2a3cd77004cd415c5f09007186ed668131033/public_html/storefront/controller/pages/checkout/guest_step_1.php

About line 518, change 3 to 2

Code: [Select]
private function _validate() {
if ((strlen(utf8_decode($this->request->post[ 'firstname' ])) < 3) || (strlen(utf8_decode($this->request->post[ 'firstname' ])) > 32)) {
$this->error[ 'firstname' ] = $this->language->get('error_firstname');
}
Title: Re: About Guest Check Out
Post by: josephnwy on March 19, 2014, 04:53:39 AM
thank you very much  :)