我想在标题标签的产品详情页面上显示类别名称。
示例:
<title>Category name | Subcategory name | Product name</title>
当前设置为(catalog / controler / product / product.php):
$this->document->setTitle($product_info['name']);
答案 0 :(得分:5)
你可以做很多事情来实现这个目标。
类别信息正在第20行的某处提取:
foreach (explode('_', $this->request->get['path']) as $path_id) {
您可以将每个类别的名称添加到变量中,并将该变量添加到设置部分:
只需在foreach之前添加变量:
$category_title_string = "";
foreach (explode('_', $this->request->get['path']) as $path_id) {
if (!$path) {
$path = $path_id;
} else {
$path .= '_' . $path_id;
}
$category_info = $this->model_catalog_category->getCategory($path_id);
//Then add the cat name to the string:
$category_title_string.= $category_info['name'] . ' - ';
之后只需将设置更改为:
$this->document->setTitle($category_title_string.' '.$product_info['name']);