Поидее чтобы выести и в категориях надо в контроллере категорий вставить в этом месте, что-то типо вот этого 'bonus' => $product_info['upc'], Но так не срабатывает. Не могу понять как в этот массив загнать значение поля UPC.
$this->data['products'][] = array(
'product_id' => $result['product_id'],
'thumb' => $image,
'name' => $result['name'],
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..',
'price' => $price,
'bonus' => $product_info['upc'],
'special' => $special,
'tax' => $tax,
'rating' => $result['rating'],
'reviews' => sprintf($this->language->get('text_reviews'), (int)$result['reviews']),
'href' => $this->url->link('product/product', 'path=' . $this->request->get['path'] . '&product_id=' . $result['product_id'])
);