Спасибо. Это работает, но только в категориях, при вставке кода
'attribute_groups' => $this->model_catalog_product->getProductAttributes($result['product_id']),
в featured.php и изменив сам featured.tpl на тоже самое, что в categori.tpl, то есть добавив кусок кода отвечающего за вывод, выдает ошибку
Notice: Undefined variable: result in /home/crims46/domains/brendtime.ru/catalog/controller/module/featured.php on line 56Notice: Undefined variable: result in /home/crims46/domains/brendtime.ru/catalog/controller/module/featured.php on line 56Notice: Undefined variable: result in /home/crims46/domains/brendtime.ru/catalog/controller/module/featured.php on line 56Notice: Undefined variable: result in /home/crims46/domains/brendtime.ru/catalog/controller/module/featured.php on line 56Notice: Undefined variable: result in /home/crims46/domains/brendtime.ru/catalog/controller/module/featured.php on line 56
Вот это как возможно исправить? Подозреваю ответ кроется в коде featured.php... вот как он выглядит после добавления кода который в самом верху:
$this->data['products'][] = array(
'product_id' => $product_info['product_id'],
'thumb' => $image,
'name' => $product_info['name'],
'attribute_groups' => $this->model_catalog_product->getProductAttributes($result['product_id']),
'price' => $price,
'special' => $special,
'rating' => $rating,
'reviews' => sprintf($this->language->get('text_reviews'), (int)$product_info['reviews']),
'href' => $this->url->link('product/product', 'product_id=' . $product_info['product_id']),
);
Подскажите пожалуйста как правильно подправить?