The Arcive of vBulletin Modifications Site. |
|
Change Number of Post Icon Columns on New thread / Post Reply Details »»
|
|||||||||||||||||||||||||||
|
Change Number of Post Icon Columns on New thread / Post Reply
Developer Last Online: Nov 2023
I recently had to search the forums to locate where to change the number of columns for the post icons in the New Thread and Post Reply. I did find threads refering the the file to be modified, but no info as to where it needed changed.
So, here it is for those looking to change the number of columns displayed for your post icons. Useful for those with narrow fixed width styles where the icons may cause table breaks, or for those with fluid designs that would allow for more columns displayed. Edit your includes/functions_newpost.php, locate the following section of code: Code:
while ($icon = $vbulletin->db->fetch_array($icons))
{
$show['posticons'] = true;
if ($numicons % 7 == 0 AND $numicons != 0)
{
$posticonbits .= "</tr><tr><td> </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;
Remember to always keep a backup of the original file in case of bad file edits, and if you upgrade in the future, you will have to edit this file again. Show Your Support
|
|||||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
demo ?
|
|
#3
|
|||
|
|||
|
So first I changed mine to 9 just to see what the heck you are talking about and I got nadda so I changed it to 20 and I still got nadda. So what the heck are you talking about?
|
|
#4
|
|||
|
|||
|
any screen shots?
|
|
#5
|
||||
|
||||
|
Here you go. This again is in the advanced reply / new thread display. The area highlighted indicates the rows displayed when adjusting this number.
|
|
#6
|
|||
|
|||
|
Thanks
|
|
#7
|
||||
|
||||
|
simple and awesome
|
|
#8
|
||||
|
||||
|
thanks, so with smilies, how can I do it? anyone?
|
|
#9
|
||||
|
||||
|
very Nice Thank
Quote:
|
|
#10
|
|||
|
|||
|
Works a treat with 3.8.1 PL1 - Thanks
|
![]() |
|
|