Вопрос по выводу атрибутов вместо краткого описания. в контроллере поменял, теперь стало вот так:
$productAttributes = $this->model_catalog_product->getProductAttributes($product['product_id']);
$this->data['products'][] = array(
'product_id' => $result['product_id'],
'attributes' => $productAttributes ? $productAttributes : false,
'thumb' => $image,
'name' => $result['name'],
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..',
'price' => $price,
'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'])
);
после этого постоянно серая маска на списке товаров. что сделал не так?