2

我想从左栏类别菜单中隐藏产品数量,例如

>  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)
 );

但是页面仍然显示数量!我应该在哪里编辑以隐藏数量?

4

1 回答 1

2

这是因为您需要编辑的文件是:

catalog/controller/module/category.php

它在之后(它在文件中两次):

if ($setting['count']) {

您只需将其更改为:

'name'        => $category['name'] . ' (' . $product_total . ')',

至:

'name'        => $category['name'],

但是,这也是管理员后端禁用类别计数的一个选项...在系统下,然后设置,然后编辑您的商店并选择否类别计数

于 2013-10-29T23:01:47.137 回答