AbanteCart Community
Shopping Cart Operations => Support => Topic started 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.
-
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?
-
yes. i want to change the minimum input of 3 to minimum 2.
where is the file located? :D
-
The path to that file is
storefront>view>default_html5>template>pages>checkout>guest_step_1.tpl
-
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
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');
}
-
thank you very much :)