是的你可以.
我在OpenCart 1.5.1.x中测试了我的代码
原文链接:https://www.f2er.com/php/135633.html我在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)中.
希望这对你有所帮助