Лучший способ - переопределить /classes/controller/FrontController.php
, в частности метод getTemplateVarPage()
в коде:
$page = array(
'title' => '',
'canonical' => $this->getCanonicalURL(),
'meta' => array(
'title' => $meta_tags['meta_title'],
'description' => $meta_tags['meta_description'],
'keywords' => $meta_tags['meta_keywords'],
'robots' => 'index',
),
'page_name' => $page_name,
'body_classes' => $body_classes,
'admin_notifications' => array(),
);
Здесь вы можете проверить текущую страницу и изменить ее по своему усмотрению.