我想在特殊页面添加元标记和元描述(... / index.php?route = product / special)。有人可以帮忙吗?
我正在使用OpenCart 3.0.2.0
我是如何弄清楚如何在页面中添加说明而不是元描述以及类别和产品等元关键字。
任何信息将不胜感激。 提前致谢
答案 0 :(得分:1)
编辑此文件:
catalog\controller\product\special.php
查找
$this->document->setTitle($this->language->get('heading_title'));
添加后:
$this->document->setDescription('My description...');
$this->document->setKeywords('my, keyword');