Opencart 3.x category id in product page
问题 I'm using opencart 3.0.2.0 I'm trying to get category id in the product page. Any suggestions ? 回答1: If you just want to get category id in the product page Open product.php file from catalog/controller/product and search for $product_info = $this->model_catalog_product->getProduct($product_id); replace it with $product_info = $this->model_catalog_product->getProduct($product_id); $query_categories = $this->model_catalog_product->getCategories($product_id); $categories = array(); foreach (