opencart 产品类别中的制造商名称

Manufacturer name in category of products in opencart

我正在尝试在类别产品中显示制造商名称。添加以下代码显示一些

错误

"Undefined index: manufacturer_id in C:\wamp\www\pcc\catalog\controller\product\category.php"

$this->load->model('catalog/manufacturer');
$manufacturer = $this->model_catalog_manufacturer->getManufacturer($result['manufacturer_id']);

请给我一些想法,我想在类别页面中为每个产品显示制造商名称。

你应该修改opencart的CORE或者你应该使用OCMod。
$this->model_catalog_manufacturer->getManufacturer($product_info['manufacturer_id']); 之类的东西将 return 制造商数据。然后您可以检索您想要的内容(图像、名称和...)。

你可以找到解决方案 here 您也可以找到一些教程 here,但它是关于产品页面的。对于类别页面,它是相同的。