Otwieramy plik inc/functions.php
Znajdujemy funkcje:
function build_profile_link
Jej ciało i listę argumentów podmieniamy na:
function build_profile_link($username="", $uid=0, $target="", $onclick="", $style="")
{
global $mybb, $lang;
if(!$username && $uid == 0)
{
// Return Guest phrase for no UID, no guest nickname
return $lang->guest;
}
elseif($uid == 0)
{
// Return the guest's nickname if user is a guest but has a nickname
return $username;
}
else
{
// Build the profile link for the registered user
if(!empty($target))
{
$target = " target=\"{$target}\"";
}
if(!empty($onclick))
{
$onclick = " onclick=\"{$onclick}\"";
}
if(!empty($style))
{
$style = " style=\"{$style}\"";
}
return "<a href=\"{$mybb->settings['bburl']}/".get_profile_link($uid)."\"{$target}{$style}{$onclick}>{$username}</a>";
}
}
Teraz otwieramy plik inc/functions_forumlist.php i szukamy:
$lastpost_profilelink = build_profile_link($lastpost_data['lastposter'], $lastpost_data['lastposteruid']);
Podmieniamy na:
$lastpost_profilelink = build_profile_link($lastpost_data['lastposter'], $lastpost_data['lastposteruid'], "", "", "color:red;");
Nie testowałem, ale powinno działać. Gdzie red można swój kolor wstawić.