Откройте файл
/controllers/front/CategoryController.php
до:
Код:
Hook::exec('actionProductListModifier', array(
'nb_products' => &$this->nbProducts,
'cat_products' => &$this->cat_products,
));
добавьте:
Код:
$cat = new Category(2);
if($count = $cat->getProducts(null, null, null, $this->orderBy, $this->orderWay, true))
{
$this->nbProducts += $count;
$this->pagination($this->nbProducts);
$this->cat_products = array_merge($this->cat_products, $cat->getProducts($this->context->language->id, (int)$this->p, (int)$this->n, $this->orderBy, $this->orderWay));
}
2 - № категории X.