我想从左栏类别菜单中隐藏产品数量,例如
> 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)
);
但是页面仍然显示数量!我应该在哪里编辑以隐藏数量?