Apparently you have to go to edit address from the customer details screen to see the company name. It's not a very logical place, but at least it's possible to see it.
AbanteCart v1.4.2 is released.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
if (isset($this->request->get['content_id'])) {
/* customer is logged in OR content_id != 8 (authorized content) */
if ($this->customer->isLogged()
or $this->request->get['content_id'] != 8 ) {
$content_id = $this->request->get['content_id'];
else
{
/* show "Authorization Required" content page */
$content_id = 9;
}
} else {
$content_id = 0;
}