файл Site.class.php там вместо /* Бренды */ $query = sql_placeholder("SELECT * FROM brands ORDER BY name"); $this->db->query($query); $allbrands = $this->db->results(); $this->smarty->assign('all_brands', $allbrands); Вставить этот код. /* Бренды */ $query = sql_placeholder("SELECT brands.*, count(products.product_id) as products_num FROM brands, products WHERE brands.brand_id=products.brand_id AND products.enabled GROUP BY brands.brand_id ORDER BY brands.name"); $this->db->query($query); $allbrands = $this->db->results(); $this->smarty-&g