在opencart中我想为这样的产品更新metatitle:PRODUCT NAME + BRANDS。有人知道解决方案吗?
答案 0 :(得分:0)
添加元标题+品牌
有两种方法块引用
您可以在产品部分的管理端添加元标题和品牌。 在产品部分有元标题字段。
OR, 更改目录/ controller / product.php文件中的代码。
以下是代码。
$this->document->setTitle($product_info['meta_title']);
您将使用EG更改代码。
$this->document->setTitle($product_info['meta_title'] ." | ". $manufacturer_info['name']);