我想设置像产品名称+品牌这样的元标题.我该怎么做



在opencart中,我想更新产品的元标题,如下所示:产品名称+品牌。有人知道解决方案吗?

添加元标题+品牌有两种方法

区块报价

您可以在产品部分的管理端添加元标题和品牌。在产品部分有元标题字段。

或者,更改catalog/controller/product.php文件上的代码。

这是它的代码。

$this->document->setTitle($product_info['meta_title']);

您将使用EG.更改代码

$this->document->setTitle($product_info['meta_title'] ." | ". $manufacturer_info['name']);

相关内容

  • 没有找到相关文章

最新更新