php – 获取产品页面Opencart的父类别

前端之家收集整理的这篇文章主要介绍了php – 获取产品页面Opencart的父类别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在Opencart的产品页面获取产品的父类别?谢谢
是的你可以.
我在OpenCart 1.5.1.x中测试了我的代码

首先,您必须修改文件/catalog/controller/product/product.PHP才能添加
第94行之后:
$product_info = $this-> model_catalog_product-> getProduct($product_id);

添加

$categories = $this-> model_catalog_product-> getCategories($product_info [‘product_id’]);
if($categories){
$categories_info = $this-> model_catalog_category-> getCategory($categories [0] [‘category_id’]);
$this-> data [‘category_id’] = $categories_info [‘category_id’];
}

然后,您可以使用变量<?PHP echo $category_id?>在您的模板文件(product.tpl)中.

希望这对你有所帮助

原文链接:https://www.f2er.com/php/135633.html

猜你在找的PHP相关文章