Jump to content

i want prestashop to display the full name not first letter


fatheeym

Recommended Posts

It's the following code on line 62 of controllers/admin/AdminOrdersController.php that does that:

		CONCAT(LEFT(c.`firstname`, 1), \'. \', c.`lastname`) AS `customer`,

Changing it to the following should do what you want:

		CONCAT(c.`firstname`, \' \', c.`lastname`) AS `customer`,
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...