如何将元 description/title 添加到 opencart 中的联系页面

How to add meta description/title to contact page in opencart

我网站的联系页面是 https://example.com/contact_us。在 google 上显示为

这不是很好。 似乎无法从管理面板编辑此页面的元标题和元描述。既不在主题面板上。 那么,如何从核心文件中编辑它呢?

catalog/view/theme/default/template/information/contact.tpl

似乎没有任何相关内容,也看不到仅针对这一页编辑加载的方法header

你有什么想法吗?

我希望它 100% 适合你。

找到页面的控制器路径。您希望编辑然后执行以下操作,

PATH : catalog\controller\information\contact.php

查找:

$this->document->setTitle($this->language->get('heading_title'));

在之后添加:

$this->document->setDescription('My description, this is where i type my text after i remove this text.');
$this->document->setKeywords('my, keyword, this, is, the place, holder, for, my, keywords');