左の列のカテゴリ メニューから製品の数量を非表示にしたい。
> T-Shirt(36)
> -Polo(10)
、括弧内の数量を削除したい。このためにcatalog/controller/product/category.php
、次のようにファイルを編集しました。
$this->data['categories'][] = array(
//'name' => $result['name'] . ($this->config->get('config_product_count') ? ' (' . $product_total . ')' : ''),
'name' => $result['name'],
'href' => $this->url->link('product/category', 'path=' . $this->request->get['path'] . '_' . $result['category_id'] . $url)
);
しかし、ページにはまだ数量が表示されています! 数量を非表示にするにはどこを編集すればよいですか?