ChanMing Posted August 26, 2010 Share Posted August 26, 2010 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 More sharing options...
rocky Posted August 26, 2010 Share Posted August 26, 2010 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 More sharing options...
ChanMing Posted August 26, 2010 Author Share Posted August 26, 2010 Rocky, Thanks a lot... it changed! Link to comment Share on other sites More sharing options...
rocky Posted August 26, 2010 Share Posted August 26, 2010 Please edit your first post and add [sOLVED] to the front of the title. Link to comment Share on other sites More sharing options...
Patric Posted August 26, 2010 Share Posted August 26, 2010 So I mark the topic as [solved].Please, next time, do it by yourself by adding [solved] at the beginning of your topic's title by editing your first post ! Thanks. ;-)Please read the forum rules. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now