Tìm và sửa file này includes/functions_newpost.php, Tìm đoạn code sau:
PHP Code:

while ($icon = $vbulletin->db->fetch_array($icons))
{
$show['posticons'] = true;
if (
$numicons % 7 == 0 AND $numicons != 0)
{
$posticonbits .= "</tr><tr><td>&nbsp;</td>";
}

$numicons++;

$iconid = $icon['iconid'];
$iconpath = $icon['iconpath'];
$alttext = $icon['title'];
if (
$seliconid == $iconid)
{
$iconchecked = 'checked="checked"';
$selectedicon = array('src' => $iconpath, 'alt' => $alttext);
}
else
{
$iconchecked = '';
}

(
$hook = vBulletinHook::fetch_hook('posticons_bit')) ? eval($hook) : false;

eval(
'$posticonbits .= "' . fetch_template('posticonbit') . '";');

}

$remainder = $numicons % 7;

if (
$remainder)
{
$remainingspan = 2 * (7 - $remainder);
$show['addedspan'] = true;
Sửa số 7 thành số bạn muốn
Theo: vbb.org
[Only registered and activated users can see links. ]