Jump to content

Abbreviated name of the client


Recommended Posts

Hi,

 

controllers/admin/AdminCustomerController, line 229.

This code

$this->toolbar_title[] = sprintf('Information about Customer: %s', Tools::substr($customer->firstname, 0, 1).'. '.$customer->lastname);

Replace with this one

$this->toolbar_title[] = sprintf('Information about Customer: %s', $customer->firstname.' '.$customer->lastname);
Link to comment
Share on other sites

×
×
  • Create New...