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: $info['posts'] = $member['posts'] ? $member['posts'] : 0; Add Below: $info['dshouts'] = $member['dshouts'] ? $member['dshouts'] : 0; Save & Close sources/Profile.php
Open up lang/**/lang_profile.php Find: 'total_posts' => "Total Cumulative Posts", Add Below: 'total_shouts' => "Total Shouts", Save & Close lang/**/lang_profile.php
Open up Skin/s*/skin_profile.php Find: {$ibforums->lang['posts_per_day']} {$info['posts_day']} Add Below: {$ibforums->lang['total_shouts']} {$info['dshouts']} Find: function tmpl_search() { global $ibforums; return << <{CAT_IMG}> {$ibforums->lang['search_title']} {$ibforums->lang['search_advanced']} EOF; } Add Below: function tmpl_shoutbox($shouts) { global $ibforums; return << <{CAT_IMG}> Latest Shouts $shouts EOF; }