никаких ограничений в магазине
1.
$category_info = $this->model_catalog_category->getCategory($path_id);
2.
$category_info = $this->model_catalog_category->getCategory($category_id);
3.
$results = $this->model_catalog_category->getCategories($category_id);
$this->data['categories'][] = array(
'category_id' => $result['category_id'],
'name' => $result['name'],
'sort_order' => $result['sort_order'],
'selected' => isset($this->request->post['selected']) && in_array($result['category_id'], $this->request->post['selected']),
'action' => $action
Об описании и речи нет
Для товаров Обрезали описание
$this->data['products'][] = array(
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 300) . '..',
Для категории Не обрезается.
$this->data['description'] = html_entity_decode($category_info['description'], ENT_QUOTES, 'UTF-8');