I want to set metatitle like PRODUCT NAME + BRANDS .How can i do this?

130 Views Asked by At

In opencart I want to update metatitle for product like this : PRODUCT NAME + BRANDS .Does anybody know a solution for that ?

1

There are 1 best solutions below

2
On

There are two method to Add Meta Title + Brand

Blockquote

Either you will add meta title and brand in admin side of product section. On Product section have meta title field.

OR, Change code on catalog/controller/product.php file.

Here is the code for it.

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

You will Change code with EG.

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