1

我有 Sellya 主题,我想删除类别顶部菜单中产品旁边的计数器。

见这里:http ://twsgs.com

我在底部看到了一个解决方案,它看起来像这样

First change:

Open category.php with your preferred editor on => catalog/controller/module/category.php

Go to the line 49: 'name' => $child['name'] . ' (' . $product_total . ')'
Change it to: 'name' => $child['name'],// . ' (' . $product_total . ')'

Go to line 71: 'name' => $category['name'] . ' (' . $product_total . ')', 
Change it to: 'name' => $category['name'],// . ' (' . $product_total . ')',


Second change:

Open category.php on => catalog/controller/product/category.php

Go to line 137: 'name' => $result['name'] . ' (' . $product_total . ')',
Change it to: 'name' => $result['name'],// . ' (' . $product_total . ')',


Third change:

Open category.php on => catalog/controller/common/header.php

Go to line: 'name' => $child['name'] . ' (' . $product_total . ')';
Change it to: 'name' => $child['name'];// . ' (' . $product_total . ')';

但它部分工作。

header.php(在控制器/公共目录)和 category.php(在控制器/产品目录)也有问题,所以我插入我的备份文件。

我的 Opencart 版本是 1.5.5.1

我该如何解决?

4

1 回答 1

8

您可以在管理中编辑一个适当的选项:System-> Settings-> 编辑您的商店设置-> 选项卡Options并找到一个名为Category product count或类似的选项-> 检查值并保存。

或者这个扩展可能有用:Category Product Count Removal

于 2013-04-08T14:25:45.067 回答