Для фанатов мода рейтинга тем внизу страницы форума!
Лично мне так больше нравится... но надо понимать сразу, что как Юра и говорил, увеличивается нагрузка... визуально это выглядит так:
[Script Execution time: 0.0287] [ Gzip Disabled ] - стандартное время загрузки главной страницы
[Script Execution time: 0.0708] [ Gzipped ] - вреся загрузки с выводом 3 последних тем с откл. статистикой просмотров и т.д.
итак:
как и было описано team тут
Копируем себе на компьютер файл frontindex.php из папки modules/threadstop/
Переименовываем его в showtop.php и удаляем следующие строки
CODE:
$fm->_Title = ' :: '.$fm->LANG['TopicsRaiting'];
include('./templates/'.DEF_SKIN.'/all_header.tpl');
include('./templates/'.DEF_SKIN.'/logos.tpl');
include('./templates/'.DEF_SKIN.'/footer.tpl');
сохраняем и заливаем в папку modules/threadstop
Открываем файл index.php
Ищем
CODE:include('./templates/'.DEF_SKIN.'/all_header.tpl');
Перед ней добавляем
CODE:include('modules/threadstop/showtop.php');
Далее
полностью меняем содержимое файла templates/InvisionExBB/topic_stat_table.tpl
на вид:
CODE:<?php
$showtop =<<<DATA
<table class="tableborder" width="100%" border="0" cellspacing="1" cellpadding="3">
<tr>
<th colspan="3" class="maintitle" align="left"><img src="./templates/InvisionExBB/im/nav_m.gif" border="0" alt=">" width="8" height="8" /> {$fm->LANG['LovelyTopics']} </th>
</tr>
<tr>
<th class="titlemedium">{$fm->LANG['ByLastPost']}</th>
<th class="titlemedium">{$fm->LANG['ByCountPosts']}</th>
<th class="titlemedium">{$fm->LANG['ByCountViews']}</th>
</tr>
<tr>
<td class="row1" width="33%">{$topic_by_lastpost}</td>
<td class="row1" width="33%">{$topic_by_post}</td>
<td class="row1" width="33%">{$topic_by_views}</td>
</tr>
<tr>
<td class="darkrow2" colspan="3"> </td>
</tr>
</table>
DATA;
?>
идем в файл templates/InvisionExBB/board_body.tpl
и сразу за :
CODE:{$news_data}
{$board_data} <br />
{$logins}
вставляем
CODE:<br />
{$showtop}
<br />
все. |