我想设置产品名称+品牌等元素。我怎么能这样做?

时间:2016-04-04 09:11:22

标签: opencart meta-title

在opencart中我想为这样的产品更新metatitle:PRODUCT NAME + BRANDS。有人知道解决方案吗?

1 个答案:

答案 0 :(得分:0)

添加元标题+品牌

有两种方法
  

块引用

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

OR, 更改目录/ controller / product.php文件中的代码。

以下是代码。

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

您将使用EG更改代码。

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