.../Themes/default/Display.template.php dosyasında
Bul:
// Show how many posts they have made.
if (!isset($context['disabled_fields']['posts']))
echo '
<li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';
Altına Ekle:
//Konu Sayısı
$data=mysql_query("SELECT count(`id_topic`) as konu FROM `smf_topics` WHERE `id_member_started` = ".$message['member']['id']);
while($d=mysql_fetch_object($data))
{
echo ' <li>Konu: ',$d->konu;
echo ' </li>';
}
mysql_free_result($data);
unset($data,$d);