Mike
Mike

Reputation: 1

How to change title on Magento Review Page?

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

Answers (1)

Roman Snitko
Roman Snitko

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

Related Questions