我想隐藏左栏类别菜单中的产品数量,例如
> 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)
);
但页面仍显示数量!我应该在哪里编辑以隐藏数量?
答案 0 :(得分:2)
这是因为您需要编辑的文件是:
catalog/controller/module/category.php
然后它(在文件中两次):
if ($setting['count']) {
您只需更改它:
'name' => $category['name'] . ' (' . $product_total . ')',
为:
'name' => $category['name'],
然而,这也是管理员后端的一个选项,可以在系统下禁用类别计数...然后设置,然后编辑商店并选择否到类别计数