Убрать сообщение прочитано

Автор raigad, 30 ноября 2012, 19:37:17

« назад - далее »

0 Пользователи и 1 гость просматривают эту тему.

raigad

Где можно убрать сообщение скока прочитано !

iaroslav

Открыть файл Display.template.php своей темы. Найти там кусок кода
// Show the topic information - icon, subject, etc.
echo '
<div id="forumposts">
<div class="cat_bar">
<h3 class="catbg">
<img src="', $settings['images_url'], '/topic/', $context['class'], '.gif" align="bottom" alt="" />
<span id="author">', $txt['author'], '</span>
', $txt['topic'], ': ', $context['subject'], ' &nbsp;(', $txt['read'], ' ', $context['num_views'], ' ', $txt['times'], ')
</h3>
</div>';

И, соотвественно, убрать лишнее сделав его вот таким.
// Show the topic information - icon, subject, etc.
echo '
<div id="forumposts">
<div class="cat_bar">
<h3 class="catbg">
<img src="', $settings['images_url'], '/topic/', $context['class'], '.gif" align="bottom" alt="" />
<span id="author">', $txt['author'], '</span>
', $txt['topic'], ': ', $context['subject'], '
</h3>
</div>';