по умолчанию нету такого идентификатора.
добавить можно следующим образом:
в файле ..catalogcontrollerproductcategory.php (если я правильно понял в категориях его надо вам?)
найти массив
$this->data['products'][] = array( 'name' => $result['name'], 'model' => $result['model'], 'rating' => $rating, 'stars' => sprintf($this->language->get('text_stars'), $rating), 'thumb' => $this->model_tool_image->resize($image, $this->config->get('config_image_product_width'), $this->config->get('config_image_product_height')), 'price' => $price, 'description' => html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8'), 'special' => $special, 'href' => $this->model_tool_seo_url->rewrite(HTTP_SERVER . 'index.php?route=product/product&path=' . $this->request->get['path'] . '&product_id=' . $result['product_id'])); и добавить туда строчку
'manufacturer' => $result['manufacturer'],
после чего в шаблоне станет доступна переменная $products[$j]['manufacturer']