Marcone Posted August 28, 2014 Share Posted August 28, 2014 Hello, I want the client name to appear altogether. Searched but did not find the place to modify it. Could someone help me? Thanks! Link to comment Share on other sites More sharing options...
PSfever.com Posted August 28, 2014 Share Posted August 28, 2014 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 More sharing options...
Recommended Posts