там написано
Теперь в нужном контроллере (для главной страницы это /catalog/controller/common/home.php) ищем место, где в шаблон передаётся массив товаров и добавляем передачу идентификатора:
$this->data['products'][] = array(
'id' => $result['product_id'], /*это та самая строчка*/
'name' => $result['name'],
'model' => $result['model'],
'rating' => $rating,
'stars' => sprintf($this->language->get('text_stars'), $rating),
'thumb' => image_resize($image, $this->config->get('config_image_product_width'), $this->config->get('config_image_product_height')),
'price' => $price,
'special' => $special,
'href' => $this->model_tool_seo_url->rewrite($this->url->http('product/product&product_id=' . $result['product_id']))
но в указанном файле нет ничего похожего!