Author Topic: Guest Checkout First Name limit  (Read 12608 times)

Offline josephnwy

  • Newbie
  • *
  • Posts: 17
  • Karma: +2/-0
    • View Profile
    • Bunny.my
Guest Checkout First Name limit
« 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.
« Last Edit: March 19, 2014, 04:04:37 PM by abantecart »

gordontaylor

  • Guest
Re: About Guest Check Out
« Reply #1 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?
« Last Edit: March 18, 2014, 03:55:43 PM by gordontaylor »

Offline josephnwy

  • Newbie
  • *
  • Posts: 17
  • Karma: +2/-0
    • View Profile
    • Bunny.my
Re: About Guest Check Out
« Reply #2 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

gordontaylor

  • Guest
Re: About Guest Check Out
« Reply #3 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

Offline eCommerce Core

  • Administrator
  • Hero Member
  • *****
  • Posts: 1602
  • Karma: +93/-1
    • View Profile
Re: About Guest Check Out
« Reply #4 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');
}
“If you’re in the luckiest one per cent of humanity, you owe it to the rest of humanity to think about the other 99 per cent.”
― Warren Buffett

Offline josephnwy

  • Newbie
  • *
  • Posts: 17
  • Karma: +2/-0
    • View Profile
    • Bunny.my
Re: About Guest Check Out
« Reply #5 on: March 19, 2014, 04:53:39 AM »
thank you very much  :)

 

Powered by SMFPacks Social Login Mod