Kilka szczegółów o moim forum:
wersja skryptu MyBB: 1.411
wersja bazy MySQL, Postgre:
wersja używanego PHP:
adres forum: www.PS-RP.info
firma hostingowa: www.ProSerwer.pl
spis wtyczek:
opis problemu: Chcę zrobić w panelu użytkownika jak się wchodzi to są informacje na temat użytkownika, a ja chcę jeszcze dodać na dole coś takiego http://i45.tinypic.com/33kw611.jpg jak to zrobić? Wiem że w ACP, Style i Szablony, Szablony, WYBIERAM, Panel Użytkownika, Useracp

<html>
<head>
<title>{$lang->user_cp}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" border="0" align="center">
<tr>
{$usercpnav}
<td valign="top">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="{$colspan}"><strong>{$lang->brief_summary}</strong></td>
</tr>
<tr>
{$avatar}
<td class="trow1" width="50%"><strong>{$lang->username}</strong></td>
<td class="trow1" width="50%">{$username}</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>{$lang->primary_usergroup}</strong></td>
<td class="trow2" width="50%">{$usergroup}</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>{$lang->registration_date}</strong></td>
<td class="trow1" width="50%">{$regdate}</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>{$lang->postnum}</strong></td>
<td class="trow2" width="50%"><a href="search.php?action=finduser&amp;uid={$mybb->user['uid']}">{$mybb->user['postnum']}</a> {$lang->posts_day}</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>{$lang->email}</strong></td>
<td class="trow1" width="50%">{$mybb->user['email']}</td>
</tr>
{$reputation}
</table>
{$latest_warnings}
</td>
</tr>
</table>
{$footer}
</body>
</html>