The files needed for editing are listed below.
1. Download and backup these files before editing.
2. Do The Following Edits Below.
Open up sources/Profile.php Find: $ibforums->vars['time_adjust'] = $ibforums->vars['time_adjust'] == "" ? 0 : $ibforums->vars['time_adjust']; Add Below: $DB->query("SELECT * FROM ibf_shoutbox WHERE name='{$member['name']}' ORDER BY id DESC LIMIT 1"); $shout = $DB->fetch_row(); $shout['message'] = stripslashes($shout['message']); $shout['message'] = preg_replace("/([^\n\r ?&\.\/<>\"\\-]{50})/i"," \\1",$shout['message']); if ($ibforums->vars['sb_showcolors'] == 1 && $ibforums->member['sb_showcolors'] == 1) { $info['latest_shout'] = "{$shout['message']}"; } else { $info['latest_shout'] = $shout['message']; } Save & Close sources/Profile.php
Open up lang/**/lang_profile.php Find: 'total_posts' => "Total Cumulative Posts", Add Below: 'latest_shout' => "Latest Shout", Save & Close lang/**/lang_profile.php
Open up Skin/s*/skin_profile.php Find: {$ibforums->lang['user_local_time']} {$info['local_time']} Add Below: {$ibforums->lang['latest_shout']} {$info['latest_shout']}