Открываем event/listener.php
Находим
Код: Выделить всё
'core.index_modify_page_title' => 'last_index_images',
Добавляем на следующей строке
Код: Выделить всё
'core.viewtopic_modify_page_title' => 'last_topic_images',
Находим
Вставляем перед
Код: Выделить всё
public function last_topic_images($event)
{
if ($this->config['last_images_attachment'])
{
if ($this->config['images_attachment'] == 1 || $this->config['images_attachment'] == 2)
{
$this->helper->last_images_attachment();
}
if ($this->config['images_attachment'] == 0 || $this->config['images_attachment'] == 2)
{
$this->helper->last_images();
}
}
}
Открываем imgposts\styles\prosilver\template\event\overall_header_content_before.html
и imgposts\styles\prosilver\template\event\overall_footer_content_after.html
Находим
заменяем на