Jump to content

[Solved] Change position between first name and last name


Recommended Posts

Hello guys!
I'm so confused how to change the name position, in prestashop 1.3.1.1 administration, the list of name show in customers tab, the list starts "Last name" then "First Name" want change to "First Name" then "Last name".

Thanks!

Link to comment
Share on other sites

Change lines 39-40 of admin/tabs/AdminCustomers.php from:

'lastname' => array('title' => $this->l('Last Name'), 'width' => 80),
'firstname' => array('title' => $this->l('First name'), 'width' => 60),



to:

'firstname' => array('title' => $this->l('First name'), 'width' => 60),
'lastname' => array('title' => $this->l('Last Name'), 'width' => 80),

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...