Для "Рекомендуемых" в файле /catalog/controller/module/featured.php
заменить
$this->data['products'][] = array(
'product_id' => $product_info['product_id'],
'thumb' => $image,
'name' => $product_info['name'],
'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']),
);
на
$this->data['products'][] = array(
'product_id' => $product_info['product_id'],
'thumb' => $image,
'description' => utf8_substr(strip_tags(html_entity_decode($product_info['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..',
'name' => $product_info['name'],
'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']),
);
И в файле /catalog/view/theme/(default если стандартный шаблон)/template/module/featured.tpl
вывести в нужное место
<?php echo $product['description']; ?>
P.S.
Для "Новые поступления" точно не знаю но по моему аналогично.