开式购物车中产品类别中的制造商名称


Manufacturer name in category of products in opencart

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

错误

"未定义的索引:manufacturer_id 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']); 的内容将返回制造商数据。然后,您可以检索所需的内容(图像,名称和...

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