Inteligentny- Konto zablokowane
- 55 18 0
wersja skryptu MyBB: 1.6.12
adres forum: www.speedrun.xaa.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Problem polega na tym, że mam plugin do statystyk top10, działa on dobrze, bo na poprzednim stylu śmigało, ale teraz, gdy dodaję zmienne do mojego nowego stylu (do index.php) to się całe forum rozjeżdża.
Muszę dodać takie zmienne:
W moim dawnym stylu miałem takie coś w index.php i wszystko działało
A to mój nowy styl w którym nie wiem w jakim miejscu dodać te zmienne. (index.php)
Prosiłbym kogoś, aby wskazał mi miejsce jak zrobić, aby się to pokazywało poprawnie, bo obecnie wygląda tak, że się całe forum rozlatuje...
adres forum: www.speedrun.xaa.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Problem polega na tym, że mam plugin do statystyk top10, działa on dobrze, bo na poprzednim stylu śmigało, ale teraz, gdy dodaję zmienne do mojego nowego stylu (do index.php) to się całe forum rozjeżdża.
Muszę dodać takie zmienne:
{$topstats_last_threads}
{$topstats_mostviews_threads}
{$topstats_posters}
{$topstats_reputation}
{$topstats_online}
W moim dawnym stylu miałem takie coś w index.php i wszystko działało
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}{$serversboard_index}
<table class="serwery" width="100%" cellspacing="1" cellpadding="4"> <tbody><tr> <td class="thead" colspan="6" style="text-align:center;"> <div class="theadleft"></div> <div class="theadright"></div> <center><div class="theadmain"><div><strong><b><i>Serwery <font color="yellow">CS-Skaczemy</font></b></i></strong><br></div></div></center> </td> </tr> <tr> <td width="300" class="tcat" style="text-align:center;"><span class="smalltext"><strong>Status Serwera</strong></span></td> <td width="135" class="tcat" style="text-align:center;"><span class="smalltext"><strong>Rodzaj serwera</strong></span></td> <td width="140" class="tcat" style="text-align:center;"><span class="smalltext"><strong>IP</strong></span></td> <td width="45" class="tcat" style="text-align:center;"><span class="smalltext"><strong>Platforma</strong></span></td> </tr> <tr> <td class="trow2" style="text-align:center;"><span class="smalltext"><a href="http://www.gametracker.com/server_info/80.72.37.12:27033/" target="_blank"><img src="http://cache.www.gametracker.com/server_info/80.72.37.12:27033/b_350_20_0B74A3_02265F_FFFFFF_FFFFFF.png" border="0" width="350" height="20" alt=""/></a></span></td> <td class="trow1" style="text-align:center;"><span class="smalltext"><b><font color="white">SpeedRun</font></b></span></td> <td class="trow1" style="text-align:center;"><span class="smalltext"><b><font color="yellow">80.72.37.12:27033</b></font></span></td> <td class="trow1" style="text-align:center;"><span class="smalltext"><b>NS/STEAM</b></span></td></tr></tr></tbody></table>
{$dvz_shoutbox}
{$ps_header_index}
<div class="sidebar" style="float: right;width: 18%;">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" style="width: 100%; border-left: 1px solid #393939; border-right: 1px solid #393939; border-bottom: 1px solid #393939;">
<tr>
<td class="tcat">
{$topstats_last_threads}
{$topstats_mostviews_threads}
{$topstats_posters}
{$topstats_reputation}
{$topstats_online}
</td>
</tr>
<tr>
</tr>
</table>
{$recenttopics}
</div>
<div class="forums" style="float: left;width: 81%;">
<div id="index_forums">{$custom_status_index}
{$forums}
<br>
</div>
</div>
<br class="clearboth">
{myshoutbox_abcd}
{$boardstats}
{$footer}
</body>
</html>
A to mój nowy styl w którym nie wiem w jakim miejscu dodać te zmienne. (index.php)
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
<style type="text/css">
.buttons {
width: 33px;
height: 33px;
background: url(images/Gameshark/colapsado.png) no-repeat;
display: block;
cursor: pointer;
}
.clickedbuttons {
width: 33px;
height: 33px;
background: url(images/Gameshark/expandido.png) no-repeat;
display: block;
cursor: pointer;
}
</style>
</head>
<body id="forum">
{$header}{$serversboard_index}
{$forums}
</div>
<br class="clear" /><br />
{myshoutbox_abcd}
{$boardstats}
{$footer}
</body>
</html>