Открываем - engine/modules/main.php
Найти:
if ($config['allow_skin_change']) $tpl->set ( '{changeskin}', ChangeSkin ( ROOT_DIR . '/templates', $config['skin'] ) );
Выше добавить:
if( $dle_module == "showfull" ) {
$tpl->set( '[title-news]', "" );
$tpl->set( '[/title-news]', "" );
$tpl->set( '{title-news}', $title_buffer );
} else {
$tpl->set( '{title-news}', "" );
$tpl->set_block( "'\\[title-news\\](.*?)\\[/title-news\\]'si", "" );
}
Открываем - engine/modules/show.full.php
Найти:
$tpl->set( '{title}', $row['title'] );
Выше добавить:
$title_buffer = $row['title'];
Выводить тайтл - [title-news]{title-news}[/title-news]