wersja skryptu MyBB: 1.8.6
adres forum: http://kbhax.xaa.pl/
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):

Mam zainstalowany plugin Latest visitors on profile, który pokazuje które osoby odwiedzały profil użytkownika. Niestety jest on wyświetlany dopiero po kliknięciu "view latest visits". Chcę aby był on wyświetlany od razu po prawej stronie, wraz z suwakiem.  Dopisałem do kodu wszystkie poniższe trzy szablony ale oprócz tego, że wyświetlił się obrazek i napis, to nic nie działa, tak jakby nie mógł znaleźć danych potrzebnych do wypełnienia pól. http://kbhax.xaa.pl/member.php?action=profile&uid=42 tutaj przykład tego

member_profilevisits:
<tr>
        <
td class="{$bg_color}"><strong>{$lang->profilevisits}</strong></td>
        <
td class="{$bg_color}"><strong>{$visit_count}</strong> [{$view_latest}]</td>
</
tr


profilevisits_popup
<div class="modal">
    <
div style="overflow-y: auto; max-height: 500px;">
        <
table cellspacing="{$theme['borderwidth']}cellpadding="3" class="tborder" style="border-spacing: 0px; padding: 2px; -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px;">
            <
tr>
                <
td class="thead" colspan="2">
                    <
div><strong>{$lang->profilevisits_of} {$profile_username}</strong></div>
                </
td>
            </
tr>
            <
tr>
                <
td class="tcat" colspan="2">
                    <
div style="display: inline; float: left;"><span style="font-weight: bold;" title="({$interval})">{$lang->profilevisits_thead}</span></div><div style="display: inline; " class="float_right">{$loadmore}</div>
                </
td>
            </
tr>        
            {
$visits}
            {
$moderation}    
        </
table>
    </
div>
</
div


profilevisits_user:
<tr id="visit_{$i}class="profileVisit">
    <
td class="{$altbg}width="1%" style="vertical-align: middle;">
        <
div class="float_left"><img src="{$visitor['avatar']['image']}alt="" height="44px" width="44px" style="margin-top: 3px; padding: 3px; border: 1px solid #ddd; background: #fff;" /></div>
    </
td>
    <
td class="{$altbg}">
        {
$profile_link}
        <
div>
            <
span class="smalltext"><strong>{$lang->profilevisits_lastactive}</strong> {$active}<br /></span>
        </
div>
    </
td>
</
tr

Część szablonu odpowiedzialna za prawą stronę profilu:
</div>
<
div style="width:30%; float: right;">



{
$profilevisits}

        <
table cellspacing="{$theme['borderwidth']}cellpadding="3" class="tborder" style="border-spacing: 0px; padding: 2px; -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px;">
            <
tr>
                <
td class="thead" colspan="2">
                    <
div><strong>Ostatnie odwiedziny</strong></div>
                </
td>
            </
tr>
            <
tr>
                <
td class="tcat" colspan="2">
                    <
div style="display: inline; float: left;"><span style="font-weight: bold;" title="({$interval})">{$lang->profilevisits_thead}</span></div><div style="display: inline; " class="float_right">{$loadmore}</div>
                </
td>
            </
tr>        
            {
$visits}
            {
$moderation}    
        </
table>


<
tr>
        <
td class="{$bg_color}"><strong>{$lang->profilevisits}</strong></td>
        <
td class="{$bg_color}"><strong>{$visit_count}</strong> [{$view_latest}]</td>
</
tr>


<
tr id="visit_{$i}class="profileVisit">
    <
td class="{$altbg}width="1%" style="vertical-align: middle;">
        <
div class="float_left"><img src="{$visitor['avatar']['image']}alt="" height="44px" width="44px" style="margin-top: 3px; padding: 3px; border: 1px solid #ddd; background: #fff;" /></div>
    </
td>
    <
td class="{$altbg}">
        {
$profile_link}
        <
div>
            <
span class="smalltext"><strong>{$lang->profilevisits_lastactive}</strong> {$active}<br /></span>
        </
div>
    </
td>
</
tr>
    






{
$adminoptions}
{
$modoptions}
</
div