Откройте файл
/controllers/front/BestSalesController.php
Код:
$nbProducts = (int)ProductSale::getNbSales();
замените на:
Код:
$category = new Category(3, $this->context->language->id);
$nbProducts = $category->getProducts(null, null, null, $this->orderBy, $this->orderWay, true);
Код:
$products = ProductSale::getBestSales($this->context->language->id, $this->p - 1, $this->n, $this->orderBy, $this->orderWay);
замените на:
Код:
$products = $category->getProducts($this->context->language->id, (int)$this->p, (int)$this->n, $this->orderBy, $this->orderWay);
3 - № необходимой категории.