Лучший Ответ Kess , 16 September 2013 - 22:59
У меня получилось так:
В файле components/com_zoo/controllers/default.php, в "public function category()" находим эти строки:
if ($title) {
$this->app->document->setTitle($this->app->zoo->buildPageTitle($title));
}
if ($description) {
$this->app->document->setDescription($description);
}
и меняем на это:
if ($title) {
if ($page > 1) {
$this->app->document->setTitle($this->app->zoo->buildPageTitle($title . ' стр. ' . $page));
}
else {
$this->app->document->setTitle($this->app->zoo->buildPageTitle($title));
}
}
if ($description) {
if ($page > 1) {
$this->app->document->setDescription($description . ' стр. ' . $page);
}
else {
$this->app->document->setDescription($description);
}
}
Description будет ставиться, если он явно указан в настройках категории.


Тема закрыта







