0
我正在使用opencart 1.5.4。Opencart顯示兒童類別列表中的總產品數量
我想了解有多少產品是在孩子類別我這個頁面上的類別列表中的計數:
http://50.87.186.42/index.php?route=product/category&path=59_60
我嘗試添加的代碼,但它看起來像它已經是在控制器(類別/控制器/模塊/ category.php)
這裏是我看代碼:
foreach ($children as $child) {
$data = array(
'filter_category_id' => $child['category_id'],
'filter_sub_category' => true
);
$product_total = $this->model_catalog_product->getTotalProducts($data);
$total += $product_total;
$children_data[] = array(
'category_id' => $child['category_id'],
'name' => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $product_total . ')' : ''),
'href' => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])
);
}
它看起來就像是使用以下$全部或$ product_total但我t不顯示在前端。我是否在某個地方關閉了它,或者有辦法重新啓用它?
感謝,
馬特