با استفاده از این هک می توانید تعداد پیغام خصوصیهای کاربران خود را محدود کنید
1. فایل engine/modules/pm.php را باز کنید
کد زیر را پیدا کنید:
$tpl->load_template( 'pm.tpl' );
و بعد از آن کد زیر را قرار دهید:
$limits = intval($member_id['pm_all']*100/$user_group[$member_id['user_group']]['max_pm']);
if ($limits<50) $color = "#0C0";
elseif ($limits>=50 and $limits<60) $color = "#FC0";
elseif ($limits>=60 and $limits<75) $color = "#F90";
elseif ($limits>=75 and $limits<85) $color = "#F60";
elseif ($limits>=85 and $limits<95) $color = "#F30";
else $color = "#F00";
$limit = <<<HTML
<table cellpadding="2" cellspacing="0">
<tr class="nowrap fV f10" valign="bottom">
<td>0%</td>
<td width="100" align="center"><div align="center"><strong>{$limits}%</strong> ({$member_id['pm_all']})</div><div style="border:#666 1px solid; width:100px; height:5px; text-align:left;"><div style="height:5px; overflow:hidden; width:{$limits}px; background-color:{$color};"> </div></div></td>
<td>100%</td>
</tr>
</table>
HTML;
$tpl->set( '{limit}', $limit );
if ($limits<50) $color = "#0C0";
elseif ($limits>=50 and $limits<60) $color = "#FC0";
elseif ($limits>=60 and $limits<75) $color = "#F90";
elseif ($limits>=75 and $limits<85) $color = "#F60";
elseif ($limits>=85 and $limits<95) $color = "#F30";
else $color = "#F00";
$limit = <<<HTML
<table cellpadding="2" cellspacing="0">
<tr class="nowrap fV f10" valign="bottom">
<td>0%</td>
<td width="100" align="center"><div align="center"><strong>{$limits}%</strong> ({$member_id['pm_all']})</div><div style="border:#666 1px solid; width:100px; height:5px; text-align:left;"><div style="height:5px; overflow:hidden; width:{$limits}px; background-color:{$color};"> </div></div></td>
<td>100%</td>
</tr>
</table>
HTML;
$tpl->set( '{limit}', $limit );
2. فایل templates/your template/css/engine.css را باز کنید
و کد زیر را در انتهای آن قرار دهید:
.nowrap {white-space:nowrap;}
.fV {font-family:Tahoma}
.f10 {font-size:10px;}
.fV {font-family:Tahoma}
.f10 {font-size:10px;}
3. فایل templates/your template/pm.tpl را باز کنید
و کد زیر را در محل مناسب قرار دهید:
{limit}