Reputation: 1
For example, I need to add two words "Reviews for:" before "Product name" in Reviews page title How to? Can't find the way Thx!
Upvotes: 0
Views: 960
Reputation: 3655
I think you can do this using observer for review_controller_product_init_after event. In observer you can use following method:
$this->getControllerAction()->getLayout()->getBlock('head')->setTitle(...)
Upvotes: 1