Opencart - 显示每个制造商旁边的产品数量

时间:2016-09-03 16:26:58

标签: count opencart product

我试图在制造商旁边显示产品数量。我也试图隐藏任何具有0个产品数量的制造商,因此如果产品数量包含产品,则仅显示制造商。别隐藏它。

我在下面尝试了以下内容。但是,产品数量仅显示为所有制造商的(0)。没有正确计算。

我正在使用OC 2.0.3.1。

  1. 打开文件catalog\controller\product\manufacturer.php
  2. 查找

    $this->load->model('catalog/manufacturer');
    

    并在该行之后添加以下代码

    $this->load->model('catalog/product');
    
  3. 查找

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

    并替换为

    'name' => $result['name'] . ' (' . $this->model_catalog_product->getTotalProducts(array('filter_manufacturer_id' => $result['manufacturer_id'])) . ')',
    
  4. 它无法正常工作。任何帮助将不胜感激。

0 个答案:

没有答案