View Full Version : Forum Home Enhancements - Forum Icons on forumhome
Sofia
05-21-2009, 10:00 PM
This mod allows you to have specific forum icons on the forumhome per forum.
https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=214289
https://vborg.vbsupport.ru/external/2010/01/51.png
(New) You want your statusicons per forum? Read this : https://vborg.vbsupport.ru/showpost.php?p=1841446&postcount=45
Installation
In the template forumhome_forumbit_level2_post,
Find:
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a>Add above:
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left"/></a>Create a folder "iconforums" into your images/misc folder. Upload your icons in images/misc/iconforums.
Indicate a forumid for the images name.
Example:
ID Forum = 3. So your image have this name : "3.gif"
ID Forum = 7. So your image have this name : "7.gif"
You must have an icon for each forum.
veenuisthebest
05-22-2009, 02:07 PM
lol nice.
ti07shadow
05-22-2009, 11:04 PM
tagged "reserved" for future use!
nice mod
Very nice... that's exactely what I've searched! :up:
warnmar10
05-24-2009, 12:01 AM
This didn't work for me and I believe it is because I don't have any categories defined. On my forumhome page I have 5 forums defined but not under categories. Any ideas?
lm3a.net
05-24-2009, 04:49 AM
i used it on my forum
it's very nice
thank you
FiMeTi
05-24-2009, 12:10 PM
great job Sofia! Thanks! :)
RobbieZ
05-24-2009, 12:45 PM
This didn't work for me and I believe it is because I don't have any categories defined. On my forumhome page I have 5 forums defined but not under categories. Any ideas?
It has nothing to do with categories.
If you hover over any part of your forum you should see this in your address bar.
http://www.yoursite/forumdisplay.php?f=44
Where the number 44 is your forum ID. There for as Sofia said. you need to upload your desired image to your subforum folder named 44.gif.
Thanks Sofia, This looks very good indeed.
I however don't use forum contains new/old posts. I use the 'Prefix for Forum Status Images'.
FiMeTi
05-24-2009, 12:53 PM
Hi Sofia. I got a little problem, hoping you?ll help me out.
Your code is missing the "<strong>$forum[title]</strong>".
So I see the pictures, but not the Forumtitle. I added it and use the following code now.
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].png" alt="$forum[title]" hspace="4px" align="left"/><strong>$forum[title]</strong></a>
works fine with this. But I do also have forums without pictures and there the forumtitle shows up two times. See picture below. How can I now get rid of the first forumtitel, so it shows normal without picture?
https://vborg.vbsupport.ru/
Sofia
05-24-2009, 01:11 PM
Hi Sofia. I got a little problem, hoping you?ll help me out.
Your code is missing the "<strong>$forum[title]</strong>".
So I see the pictures, but not the Forumtitle.
I added it and use the following code now.
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].png" alt="$forum[title]" hspace="4px" align="left"/><strong>$forum[title]</strong></a>works fine with this. But I do also have forums without pictures and there the forumtitle shows up two times. See picture below. How can I now get rid of the first forumtitel, so it shows normal without picture?
http://img39.imageshack.us/img39/161/feedback.jpg
Strange... forumtitle shows up two times because you enter $forum[title] in your code.
If you use my code, you can see pictures and forumtitles.
You must add
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].png" alt="$forum[title]" hspace="4px" align="left"/></a>
after forumtitle variable. Don't delete your forumtitle code.
You can post in this thread your templates, if you want.
Sofia
05-24-2009, 01:59 PM
Here : forumhome_forumbit_level2_post
<tr align="center">
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
<td class="alt1Active" align="$stylevar[left]" id="f$forum[forumid]">
<div>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" alt="$forum[title]" hspace="4px" align="left"/></a>
<if condition="$show['browsers']"><span class="smallfont">(<phrase 1="$forum[browsers]">$vbphrase[x_viewing]</phrase>)</span></if>
</div>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['forumsubscription']"><div class="smallfont"><strong><a href="subscription.php?$session[sessionurl]do=removesubscription&f=$forum[forumid]" rel="nofollow">$vbphrase[unsubscribe_from_this_forum]</a></strong></div></if>
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
<td class="alt2">$forum[lastpostinfo]</td>
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1"><div class="smallfont">$forum[moderators] </div></td>
</if>
</tr>
$childforumbits
FiMeTi
05-24-2009, 02:04 PM
still crap. looks like something is fu*ked up here(my forums).
See attached image. Okay I try a few more ... bleh
thx anyway
Sofia
05-24-2009, 02:14 PM
still crap. looks like something is fu*ked up here(my forums).
See attached image. Okay I try a few more ... bleh
thx anyway
Hummm... Ok
You must create into your "images" folder "iconforums".. In "iconforums", upload your images like this :
2.png, 4.png, etcc... 2 and 4 are forum ID. If something is wrong, only forumtitle show up.
FiMeTi
05-24-2009, 02:24 PM
lool i got it solved yet.
alt="$forum[title]"
this little part got on my nerves. ;)
Just deleted it and now it is aaalll fineee
thanks mate
Sofia
05-24-2009, 02:24 PM
ye I know. That worked, but for those forums, where I dont use a picture, there just again shows up the forumtitle. lol
Ohhhhhh !!!! Ok. I didn't understand !
Simply delete "alt="$forum[title]" in my code.
Sorry :o
aliali
05-24-2009, 02:26 PM
Do you have a way to develop a new image, the place of icons and the old as it is in the picture :)
http://images.upload2world.com/get-5-2009-upload2world_com_pnyq.png
tanks all
Sofia
05-24-2009, 02:34 PM
Do you have a way to develop a new image, the place of icons and the old as it is in the picture :)
tanks all
Hi aliali. Yes, it's possible, but only 1 icon by forum, so you cannot have old/new posts system.
In the template forumhome_forumbit_level2_post and forumhome_forumbit_level1_post
Find:
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
Replace by:
<td class="alt2"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/$forum[forumid].gif" hspace="4px" align="left"/></a></td>
aliali
05-24-2009, 02:47 PM
First, Thanks for the quick reply :)
Yes it,s 100%,Work but are there pictures of icons?
Thank you
compact123
05-24-2009, 02:54 PM
wow perfect, i installed...thanks.
http://img194.imageshack.us/img194/305/adszggu.png
Sofia
05-24-2009, 02:55 PM
Yes it,s 100%,Work but are there pictures of icons?
Thank you
I don't understand your problem. Pictures of icons? Please develop. ;)
aliali
05-24-2009, 03:04 PM
I don't understand your problem. Pictures of icons? Please develop. ;)
yes ..for exp.......
https://vborg.vbsupport.ru/
Sofia
05-24-2009, 03:15 PM
yes ..for exp.......
http://images.upload2world.com/get-5-2009-upload2world_com_yose.PNG
Lol. In this screen, the place of 'iconforums' is the place of statusicon (see this previous post : https://vborg.vbsupport.ru/showpost.php?p=1816283&postcount=18). But I don't understand what do you mean by 'picture of images'. I don't provide icons.
RobbieZ
05-24-2009, 03:33 PM
lol. je crois qu'ils veulent que vous fassiez des images pour eux
Sofia
05-24-2009, 03:43 PM
lol. je crois qu'ils veulent que vous fassiez des images pour eux
Coucou RobbieZ.
Oui, c'est bien ce que je me disais aussi :D. Je ne peux pas, sinon, j'en finirais pas, et ce n'est pas le sujet du post.
aliali
05-24-2009, 04:03 PM
Lol. In this screen, the place of 'iconforums' is the place of statusicon (see this previous post : https://vborg.vbsupport.ru/showpost.php?p=1816283&postcount=18). But I don't understand what do you mean by 'picture of images'. I don't provide icons.
Thank you, but I said you got some of the icons?:)
Sofia
05-24-2009, 04:18 PM
Thank you, but I said you got some of the icons?:)
No. You must create your own icons, adapted to your site, your theme, your style, ...
FiMeTi
05-24-2009, 05:10 PM
Damn...lol I just noticed that IE is retarded and does load something weird. Firefox works smooth. Check my attached picture. :)
Probably problem is I use png instead of gif? hmmmm...IE tries to load a image for the other forums, too. ;(
Any solution sofia? :up:
Sofia
05-24-2009, 05:42 PM
Damn...lol I just noticed that IE is retarded and does load something weird. Firefox works smooth. Check my attached picture. :)
Probably problem is I use png instead of gif? hmmmm...IE tries to load a image for the other forums, too. ;(
Any solution sofia? :up:
Yes, with IE, png can have problem. Use GIF icons.
FiMeTi
05-24-2009, 05:55 PM
Yes, with IE, png can have problem. Use GIF icons.
Still same...IE tries to load image. You can check yourself ;)
Well, than I go create/search icons for all of my forums ;P
Black Tiger
05-24-2009, 11:59 PM
Add above:
Looks almost the same. Must the line be added above or can this also be achieved by replacing the found line by the new one?
Sofia
05-25-2009, 07:40 AM
Looks almost the same. Must the line be added above or can this also be achieved by replacing the found line by the new one?
If you replace the first line by my line, forumtitles don't show up.
Do you have a problem with this code?
tspaetten
05-28-2009, 01:01 PM
Great mod now i get it to work
Sofia
05-29-2009, 09:04 AM
Great mod now i get it to work
Hope you enjoy it :)
crustymusic99
05-31-2009, 11:24 PM
I only want to customize a select few icons, the others should be default. This mod requires me to have a unique icon for every forum.. Do you know what I should add to specify only which forums need a new icon, and the rest be the default?
I also would like to change the really small icons per sub-forum..
Sofia
06-01-2009, 07:04 AM
I only want to customize a select few icons, the others should be default. This mod requires me to have a unique icon for every forum.. Do you know what I should add to specify only which forums need a new icon, and the rest be the default?
I also would like to change the really small icons per sub-forum..
If your default icons is statuiscon (new / old), you can't do it. If your default icons are customized icons, you can create a default icon.
If you want icons in sub-forums, you must edit the template "forumhome_forumbit_level1_post" (same code).
crustymusic99
06-01-2009, 07:23 AM
Preferably if no custom icon is specified I want no icon to show. How it is now if no icon for that forum exist a red x error image will show. I need it to be default where nothing shows.
abbasbsp
06-12-2009, 02:24 PM
mr. sofia
my icon makes to want to present middle, like there divider between subforum
can you help me
this I make :
https://vborg.vbsupport.ru/external/2009/06/114.jpg
this exam, what I want
https://vborg.vbsupport.ru/external/2009/06/115.jpg
please help me ...
kyrenator
06-14-2009, 06:00 PM
thanks, nice work!
ddo36
06-19-2009, 03:26 PM
mark this as installed. :)
Great work sofia :up:
I have one question though..
I went to vBulletin Options>> Forum Display Options (forumdisplay)>>Enable Forum Description set to Yes..
So that means that the description of the forum will show below the navbar right?
my question is, where do you think i can edit the forum description(showing below the navbar), so that icons can show in the description without editing the forum description(in the forum manager).
just like what you did in this mod.
coz i'd like that the forum description(below the navbar) will have pictures too.
i hope you understood my question. :D
Candostum
06-19-2009, 08:34 PM
Thanks but I get XHTML error with this code.
kent_lkc
06-20-2009, 09:24 AM
any idea how to add image to Category ?
New Joe
07-02-2009, 01:11 PM
Hi aliali. Yes, it's possible, but only 1 icon by forum, so you cannot have old/new posts system.
In the template forumhome_forumbit_level2_post and forumhome_forumbit_level1_post
Find:
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
Replace by:
<td class="alt2"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/$forum[forumid].gif" hspace="4px" align="left"/></a></td>
I tried that but it didn't work.
Could you give me a more "step by step" way to do it, including where to upload the images.
Also do I have to add anything to the code change?
How does it know which picture to add to which Forum?
Sofia
07-02-2009, 02:37 PM
I tried that but it didn't work.
Could you give me a more "step by step" way to do it, including where to upload the images.
Also do I have to add anything to the code change?
How does it know which picture to add to which Forum?
Hey Joe. :)
Try to upload images in the folder misc.
If it doesn't work, you can test this:
Only if you have 3.7.x and newer version (3.8.x)
You can have specific status icons by forum.
With no product, no template modification and very easy.
https://vborg.vbsupport.ru/
Installation
1. AdminCP
AdminCP >> Forums & Moderators >> Forum Manager >> Choose a forum
In this forum, find: Style Options
In Style Options, we can modify Prefix for Forum Status Images.
This setting allows you to have a prefix by forum that will be used on status icons filenames.
You must enter here your forum ID.
How I can find my forum ID?
On the same page, at the top of this page, you've your forum name and your forum ID.
https://vborg.vbsupport.ru/
In this example, ID is "2", so you must enter "2" in Prefix for Forum Status Images.
Then, I use "_" so that it is more clean on your filenames.
2. Images
Now, you have to create your images for every forum where you want to have specific status icons.
Your images must have this name:
ID_forum_link.gif
ID_forum_new.gif
ID_forum_new_lock.gif
ID_forum_old.gif
ID_forum_old_lock.gif
In my example, images have this name:
2_forum_link.gif
2_forum_new.gif
2_forum_new_lock.gif
2_forum_old.gif
2_forum_old_lock.gif
Finally, upload images into "images/yourstyle/statusicon".
thedagnu
07-02-2009, 03:17 PM
Do you know what I should add to specify only which forums need a new image, and the rest be the default...?
Examples like the following picture :
101388
Thank you for your help.
Sorry if my english bad. :)
New Joe
07-02-2009, 03:19 PM
Thanks for that, I will give it a try.
Shankoty
07-09-2009, 09:39 AM
Hey Joe. :)
Try to upload images in the folder misc.
If it doesn't work, you can test this:
Only if you have 3.7.x and newer version (3.8.x)
You can have specific status icons by forum.
With no product, no template modification and very easy.
https://vborg.vbsupport.ru/
Installation
1. AdminCP
AdminCP >> Forums & Moderators >> Forum Manager >> Choose a forum
In this forum, find: Style Options
In Style Options, we can modify Prefix for Forum Status Images.
This setting allows you to have a prefix by forum that will be used on status icons filenames.
You must enter here your forum ID.
How I can find my forum ID?
On the same page, at the top of this page, you've your forum name and your forum ID.
https://vborg.vbsupport.ru/
In this example, ID is "2", so you must enter "2" in Prefix for Forum Status Images.
Then, I use "_" so that it is more clean on your filenames.
2. Images
Now, you have to create your images for every forum where you want to have specific status icons.
Your images must have this name:
ID_forum_link.gif
ID_forum_new.gif
ID_forum_new_lock.gif
ID_forum_old.gif
ID_forum_old_lock.gif
In my example, images have this name:
2_forum_link.gif
2_forum_new.gif
2_forum_new_lock.gif
2_forum_old.gif
2_forum_old_lock.gif
Finally, upload images into "images/yourstyle/statusicon".
NOT WORKING , it show me empty area beside the forum,..
New Joe
07-09-2009, 12:27 PM
NOT WORKING , it show me empty area beside the forum,..
Didn't work for me either and it can only be set to certain styles.
I just followed this thread and it worked great: http://www.vbulletin.com/forum/showthread.php?t=114545
Now all I am looking for is how to add the icons within the forum on the let instead of the envelopes.
dimthan
07-12-2009, 06:56 AM
where i can find some good icons for my forum using this add ?
thx in advance
TheLastSuperman
07-12-2009, 06:30 PM
where i can find some good icons for my forum using this add ?
thx in advance
Just google FREE graphics, icons etc there are several sites offering such w/ very flexible licenses but be sure to read & abide by their terms of use.
abdulbasitsaeed
07-13-2009, 06:06 AM
Excellent mod, Sofia. Thank you very much for it. :)
I know you're on vacations, but is it possible to add a separator between the category icon and it's title & description, as shown in the attachment.
https://vborg.vbsupport.ru/external/2009/07/25.png
101885
Sofia
07-15-2009, 11:34 AM
Excellent mod, Sofia. Thank you very much for it. :)
I know you're on vacations, but is it possible to add a separator between the category icon and it's title & description, as shown in the attachment.
https://vborg.vbsupport.ru/external/2009/07/25.png
101885
You want to use a "td" ? If you want it, you must do that:
In your template forumhome_forumbit_level1_nopost
Find:
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
Replace by:
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">7<else />6</if>">
In the template forumhome_forumbit_level2_post
Find
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
Add below:
<td class="alt1"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left"/></a></td>
In the template forumhome
Find:
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead>
Replace by:
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead>
And 1
07-15-2009, 02:24 PM
Thanks... :)
no files uploaded !!!!
how to download?
Sofia
07-17-2009, 01:43 PM
no files uploaded !!!!
how to download?
There are no file to download ;) What do you want to download?
abdulbasitsaeed
07-18-2009, 04:11 AM
You want to use a "td" ? If you want it, you must do that:
In your template forumhome_forumbit_level1_nopost
Find:
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
Replace by:
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">7<else />6</if>">
In the template forumhome_forumbit_level2_post
Find
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
Add below:
<td class="alt1"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left"/></a></td>
In the template forumhome
Find:
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead>
Replace by:
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead>
Dear Sofia,
Thank you for replying. However, I'm running into some trouble. Of the 3 codes you have asked to replace, I was able to locate only the second one. In template 1 and 3 you have mentioned, there is no such code which you have pointed out to replace. I think this may be because I'm using a custom skin.
I'll paste the code for the 3 templates in the next post. Hopefully, you would be able to point out where I'm missing something. :)
abdulbasitsaeed
07-18-2009, 04:15 AM
Template: forumhome_forumbit_level1_nopost
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_misc]/_cat-top_lft3.gif" alt="" /></td>
<td width="100%" class="cat-top_x3">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
<if condition="$show['forumdescription']"><span class="smallfont">: $forum[description]</span></if>
</td>
<td><img src="$stylevar[imgdir_misc]/_cat-top_rht3.gif" alt="" /></td>
</tr></table>
<div class="side_lft3">
<div class="side_rht3">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<if condition="$show['subforums']">
<tbody>
<tr>
<td class="alt1" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>"><div class="smallfont"><ul class="subforum">$forum[subforums]</ul><br class="clear" /></div></td>
</tr>
</tbody>
</if>
<if condition="$childforumbits">
<if condition="!$show['collapsable_forums']">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
</if>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" nowrap="nowrap">$vbphrase[last_post]<div class="lastpost_w"></div></td>
<td class="thead" nowrap="nowrap">$vbphrase[threads]<div class="threads_w"></div></td>
<td class="thead" nowrap="nowrap">$vbphrase[posts]<div class="posts_w"></div></td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
$childforumbits
<if condition="!$show['collapsable_forums']">
</tbody>
</if>
</if>
</table>
</div>
</div>
<div class="cat-btm_x3"><div class="cat-btm_lft3"></div><div class="cat-btm_rht3"></div></div>
<br />
Template: forumhome_forumbit_level2_post
<tr align="center">
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
<td class="alt1Active" align="$stylevar[left]" id="f$forum[forumid]">
<div>
<!-- Code begin by Saeed -->
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].png" hspace="4px" align="left"/></a>
<!-- Code end by Saeed -->
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a>
<if condition="$show['browsers']"><span class="smallfont">(<phrase 1="$forum[browsers]">$vbphrase[x_viewing]</phrase>)</span></if>
</div>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['forumsubscription']"><div class="smallfont"><strong><a href="subscription.php?$session[sessionurl]do=removesubscription&f=$forum[forumid]" rel="nofollow">$vbphrase[unsubscribe_from_this_forum]</a></strong></div></if>
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><ul class="subforum">$forum[subforums]</ul><br class="clear" /></div></if>
</td>
<td class="alt2" nowrap="nowrap">$forum[lastpostinfo]</td>
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1"><div class="smallfont">$forum[moderators] </div></td>
</if>
</tr>
$childforumbits
Template: forumhome
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
$headinclude
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
</head>
<body>
$header
$navbar
<if condition="$show['guest']">
<!-- guest welcome message -->
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_misc]/_cat-top_lft3.gif" alt="" /></td>
<td width="100%" class="cat-top_x3">
<phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase>
</td>
<td><img src="$stylevar[imgdir_misc]/_cat-top_rht3.gif" alt="" /></td>
</tr></table>
<div class="side_lft3">
<div class="side_rht3">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1">
<phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
</table>
</div>
</div>
<div class="cat-btm_x3"><div class="cat-btm_lft3"></div><div class="cat-btm_rht3"></div></div>
<!-- / guest welcome message -->
<br />
</if>
<!-- main -->
$forumbits
$forumhome_markread_script
<!-- /main -->
<br />
$ad_location[ad_forumhome_afterforums]
<!-- what's going on box -->
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_misc]/_cat-top_lft3.gif" alt="" /></td>
<td width="100%" class="cat-top_x3">
$vbphrase[whats_going_on]
</td>
<td><img src="$stylevar[imgdir_misc]/_cat-top_rht3.gif" alt="" /></td>
</tr></table>
<div class="side_lft3">
<div class="side_rht3">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
$template_hook[forumhome_wgo_pos1]
<if condition="$show['loggedinusers']">
<!-- logged-in users -->
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
<a href="online.php$session[sessionurl_q]">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
<tr>
<td class="alt2"><a href="online.php$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
<td class="alt1" width="100%">
<div class="smallfont">
<div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></div>
<div>$activeusers</div>
</div>
</td>
</tr>
</tbody>
<!-- end logged-in users -->
</if>
$template_hook[forumhome_wgo_pos2]
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_stats')"><img id="collapseimg_forumhome_stats" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_stats].gif" alt="" border="0" /></a>
<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="$vbcollapse[collapseobj_forumhome_stats]">
<tr>
<td class="alt2"><img src="$stylevar[imgdir_misc]/stats.gif" alt="<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>" border="0" /></td>
<td class="alt1" width="100%">
<div class="smallfont">
<div>
$vbphrase[threads]: $totalthreads,
$vbphrase[posts]: $totalposts,
$vbphrase[members]: $numbermembers<if condition="$show['activemembers']">,
<span title="<phrase 1="$vboptions[activememberdays]">$vbphrase[within_the_last_x_days]</phrase>">$vbphrase[active_members]: $activemembers</span>
</if>
</div>
<div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div>
$template_hook[forumhome_wgo_stats]
</div>
</td>
</tr>
</tbody>
$template_hook[forumhome_wgo_pos3]
<if condition="$show['birthdays']">
<!-- today's birthdays -->
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_birthdays')"><img id="collapseimg_forumhome_birthdays" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_birthdays].gif" alt="" border="0" /></a>
$vbphrase[todays_birthdays]
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_birthdays" style="$vbcollapse[collapseobj_forumhome_birthdays]">
<tr>
<td class="alt2"><a href="calendar.php?$session[sessionurl]do=getday&day=$today&sb=1"><img src="$stylevar[imgdir_misc]/birthday.gif" alt="$vbphrase[view_birthdays]" border="0" /></a></td>
<td class="alt1" width="100%"><div class="smallfont">$birthdays</div></td>
</tr>
</tbody>
<!-- end today's birthdays -->
</if>
$template_hook[forumhome_wgo_pos4]
<if condition="$show['upcomingevents']">
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_events')"><img id="collapseimg_forumhome_events" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_events].gif" alt="" border="0" /></a>
<if condition="$show['todaysevents']">$vbphrase[todays_events]<else /><phrase 1="$vboptions[showevents]">$vbphrase[upcoming_events_for_the_next_x_days]</phrase></if>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_events" style="$vbcollapse[collapseobj_forumhome_events]">
<tr>
<td class="alt2"><a href="calendar.php$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/calendar.gif" alt="$vbphrase[calendar]" border="0" /></a></td>
<td class="alt1" width="100%"><div class="smallfont">$upcomingevents</div></td>
</tr>
</tbody>
</if>
$template_hook[forumhome_wgo_pos5]
<tbody>
<tr>
<td class="tfoot" align="center" colspan="2"><div class="smallfont"><strong>
<a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a>
<if condition="$vboptions['forumleaders']">
<a href="showgroups.php$session[sessionurl_q]">$vbphrase[view_forum_leaders]</a></if>
<if condition="!$show['guest']">
<!-- member logout -->
<a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a>
<!-- end member logout -->
</if>
</strong></div></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="cat-btm_x3"><div class="cat-btm_lft3"></div><div class="cat-btm_rht3"></div></div>
<br />
<!-- end what's going on box -->
<!-- icons and login code -->
<table class="tborder" align="center" cellpadding="3" cellspacing="$stylevar[cellspacing]" border="0">
<tr>
<td class="alt2 smallfont"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" />
$vbphrase[forum_contains_new_posts]
<img class="inlineimg" src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" />
$vbphrase[forum_contains_no_new_posts]
<if condition="$vboptions['showlocks']">
<img class="inlineimg" src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" />
$vbphrase[forum_is_closed_for_posting]
</if>
</td>
</tr>
</table>
<!-- / icons and login code -->
$footer
</body>
</html>
Sofia
07-18-2009, 04:44 AM
Template: forumhome_forumbit_level1_nopost
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_misc]/_cat-top_lft3.gif" alt="" /></td>
<td width="100%" class="cat-top_x3">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
<if condition="$show['forumdescription']"><span class="smallfont">: $forum[description]</span></if>
</td>
<td><img src="$stylevar[imgdir_misc]/_cat-top_rht3.gif" alt="" /></td>
</tr></table>
<div class="side_lft3">
<div class="side_rht3">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<if condition="$show['subforums']">
<tbody>
<tr>
<td class="alt1" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>"><div class="smallfont"><ul class="subforum">$forum[subforums]</ul><br class="clear" /></div></td>
</tr>
</tbody>
</if>
<if condition="$childforumbits">
<if condition="!$show['collapsable_forums']">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
</if>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" nowrap="nowrap">$vbphrase[last_post]<div class="lastpost_w"></div></td>
<td class="thead" nowrap="nowrap">$vbphrase[threads]<div class="threads_w"></div></td>
<td class="thead" nowrap="nowrap">$vbphrase[posts]<div class="posts_w"></div></td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
$childforumbits
<if condition="!$show['collapsable_forums']">
</tbody>
</if>
</if>
</table>
</div>
</div>
<div class="cat-btm_x3"><div class="cat-btm_lft3"></div><div class="cat-btm_rht3"></div></div>
<br />
Template: forumhome_forumbit_level2_post
<tr align="center">
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
<td class="alt1Active" align="$stylevar[left]" id="f$forum[forumid]">
<div>
<!-- Code begin by Saeed -->
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].png" hspace="4px" align="left"/></a>
<!-- Code end by Saeed -->
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a>
<if condition="$show['browsers']"><span class="smallfont">(<phrase 1="$forum[browsers]">$vbphrase[x_viewing]</phrase>)</span></if>
</div>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['forumsubscription']"><div class="smallfont"><strong><a href="subscription.php?$session[sessionurl]do=removesubscription&f=$forum[forumid]" rel="nofollow">$vbphrase[unsubscribe_from_this_forum]</a></strong></div></if>
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><ul class="subforum">$forum[subforums]</ul><br class="clear" /></div></if>
</td>
<td class="alt2" nowrap="nowrap">$forum[lastpostinfo]</td>
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1"><div class="smallfont">$forum[moderators] </div></td>
</if>
</tr>
$childforumbits
Template: forumhome
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
$headinclude
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
</head>
<body>
$header
$navbar
<if condition="$show['guest']">
<!-- guest welcome message -->
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_misc]/_cat-top_lft3.gif" alt="" /></td>
<td width="100%" class="cat-top_x3">
<phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase>
</td>
<td><img src="$stylevar[imgdir_misc]/_cat-top_rht3.gif" alt="" /></td>
</tr></table>
<div class="side_lft3">
<div class="side_rht3">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1">
<phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
</table>
</div>
</div>
<div class="cat-btm_x3"><div class="cat-btm_lft3"></div><div class="cat-btm_rht3"></div></div>
<!-- / guest welcome message -->
<br />
</if>
<!-- main -->
$forumbits
$forumhome_markread_script
<!-- /main -->
<br />
$ad_location[ad_forumhome_afterforums]
<!-- what's going on box -->
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_misc]/_cat-top_lft3.gif" alt="" /></td>
<td width="100%" class="cat-top_x3">
$vbphrase[whats_going_on]
</td>
<td><img src="$stylevar[imgdir_misc]/_cat-top_rht3.gif" alt="" /></td>
</tr></table>
<div class="side_lft3">
<div class="side_rht3">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
$template_hook[forumhome_wgo_pos1]
<if condition="$show['loggedinusers']">
<!-- logged-in users -->
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
<a href="online.php$session[sessionurl_q]">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
<tr>
<td class="alt2"><a href="online.php$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
<td class="alt1" width="100%">
<div class="smallfont">
<div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></div>
<div>$activeusers</div>
</div>
</td>
</tr>
</tbody>
<!-- end logged-in users -->
</if>
$template_hook[forumhome_wgo_pos2]
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_stats')"><img id="collapseimg_forumhome_stats" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_stats].gif" alt="" border="0" /></a>
<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="$vbcollapse[collapseobj_forumhome_stats]">
<tr>
<td class="alt2"><img src="$stylevar[imgdir_misc]/stats.gif" alt="<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>" border="0" /></td>
<td class="alt1" width="100%">
<div class="smallfont">
<div>
$vbphrase[threads]: $totalthreads,
$vbphrase[posts]: $totalposts,
$vbphrase[members]: $numbermembers<if condition="$show['activemembers']">,
<span title="<phrase 1="$vboptions[activememberdays]">$vbphrase[within_the_last_x_days]</phrase>">$vbphrase[active_members]: $activemembers</span>
</if>
</div>
<div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div>
$template_hook[forumhome_wgo_stats]
</div>
</td>
</tr>
</tbody>
$template_hook[forumhome_wgo_pos3]
<if condition="$show['birthdays']">
<!-- today's birthdays -->
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_birthdays')"><img id="collapseimg_forumhome_birthdays" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_birthdays].gif" alt="" border="0" /></a>
$vbphrase[todays_birthdays]
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_birthdays" style="$vbcollapse[collapseobj_forumhome_birthdays]">
<tr>
<td class="alt2"><a href="calendar.php?$session[sessionurl]do=getday&day=$today&sb=1"><img src="$stylevar[imgdir_misc]/birthday.gif" alt="$vbphrase[view_birthdays]" border="0" /></a></td>
<td class="alt1" width="100%"><div class="smallfont">$birthdays</div></td>
</tr>
</tbody>
<!-- end today's birthdays -->
</if>
$template_hook[forumhome_wgo_pos4]
<if condition="$show['upcomingevents']">
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_events')"><img id="collapseimg_forumhome_events" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_events].gif" alt="" border="0" /></a>
<if condition="$show['todaysevents']">$vbphrase[todays_events]<else /><phrase 1="$vboptions[showevents]">$vbphrase[upcoming_events_for_the_next_x_days]</phrase></if>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_events" style="$vbcollapse[collapseobj_forumhome_events]">
<tr>
<td class="alt2"><a href="calendar.php$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/calendar.gif" alt="$vbphrase[calendar]" border="0" /></a></td>
<td class="alt1" width="100%"><div class="smallfont">$upcomingevents</div></td>
</tr>
</tbody>
</if>
$template_hook[forumhome_wgo_pos5]
<tbody>
<tr>
<td class="tfoot" align="center" colspan="2"><div class="smallfont"><strong>
<a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a>
<if condition="$vboptions['forumleaders']">
<a href="showgroups.php$session[sessionurl_q]">$vbphrase[view_forum_leaders]</a></if>
<if condition="!$show['guest']">
<!-- member logout -->
<a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a>
<!-- end member logout -->
</if>
</strong></div></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="cat-btm_x3"><div class="cat-btm_lft3"></div><div class="cat-btm_rht3"></div></div>
<br />
<!-- end what's going on box -->
<!-- icons and login code -->
<table class="tborder" align="center" cellpadding="3" cellspacing="$stylevar[cellspacing]" border="0">
<tr>
<td class="alt2 smallfont"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" />
$vbphrase[forum_contains_new_posts]
<img class="inlineimg" src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" />
$vbphrase[forum_contains_no_new_posts]
<if condition="$vboptions['showlocks']">
<img class="inlineimg" src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" />
$vbphrase[forum_is_closed_for_posting]
</if>
</td>
</tr>
</table>
<!-- / icons and login code -->
$footer
</body>
</html>
Yes, thank you. This code differ from styles. ;)
abdulbasitsaeed
07-18-2009, 05:17 AM
No wonder! :D
I hope you'll be able to understand where to make the changes. :)
powersilie
07-18-2009, 12:08 PM
Hi!
This is my problem too :rolleyes:
greetz
Karin
abdulbasitsaeed
07-21-2009, 11:21 AM
Any help possible, Sofia? :)
Sofia
07-21-2009, 02:00 PM
Hello abdulbasitsaeed. Try these modifications :
Template: forumhome_forumbit_level1_nopost
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_misc]/_cat-top_lft3.gif" alt="" /></td>
<td width="100%" class="cat-top_x3">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
<if condition="$show['forumdescription']"><span class="smallfont">: $forum[description]</span></if>
</td>
<td><img src="$stylevar[imgdir_misc]/_cat-top_rht3.gif" alt="" /></td>
</tr></table>
<div class="side_lft3">
<div class="side_rht3">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<if condition="$show['subforums']">
<tbody>
<tr>
<td class="alt1" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>"><div class="smallfont"><ul class="subforum">$forum[subforums]</ul><br class="clear" /></div></td>
</tr>
</tbody>
</if>
<if condition="$childforumbits">
<if condition="!$show['collapsable_forums']">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
</if>
<tr align="center">
<td class="thead"> </td>
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" nowrap="nowrap">$vbphrase[last_post]<div class="lastpost_w"></div></td>
<td class="thead" nowrap="nowrap">$vbphrase[threads]<div class="threads_w"></div></td>
<td class="thead" nowrap="nowrap">$vbphrase[posts]<div class="posts_w"></div></td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
$childforumbits
<if condition="!$show['collapsable_forums']">
</tbody>
</if>
</if>
</table>
</div>
</div>
<div class="cat-btm_x3"><div class="cat-btm_lft3"></div><div class="cat-btm_rht3"></div></div>
<br />Template: forumhome_forumbit_level2_post
<tr align="center">
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
<td class="alt1"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left"/></a></td>
<td class="alt1Active" align="$stylevar[left]" id="f$forum[forumid]">
<div>
<!-- Code begin by Saeed -->
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].png" hspace="4px" align="left"/></a>
<!-- Code end by Saeed -->
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a>
<if condition="$show['browsers']"><span class="smallfont">(<phrase 1="$forum[browsers]">$vbphrase[x_viewing]</phrase>)</span></if>
</div>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['forumsubscription']"><div class="smallfont"><strong><a href="subscription.php?$session[sessionurl]do=removesubscription&f=$forum[forumid]" rel="nofollow">$vbphrase[unsubscribe_from_this_forum]</a></strong></div></if>
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><ul class="subforum">$forum[subforums]</ul><br class="clear" /></div></if>
</td>
<td class="alt2" nowrap="nowrap">$forum[lastpostinfo]</td>
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1"><div class="smallfont">$forum[moderators] </div></td>
</if>
</tr>
$childforumbits
abdulbasitsaeed
07-21-2009, 11:42 PM
Thank you so much for your response, Sofia. :)
All I had to do was change the path of the image in the last Template: forumhome_forumbit_level2_post you posted, and take out the code you had mentioned in your first post. The results looks lovely.
Thank you very much, once again! :)
powersilie
07-22-2009, 01:10 PM
Hallo!
My forumhome_forumbit_level2_post is different and in Firefox it looks like this:
https://vborg.vbsupport.ru/external/2009/07/16.png
and in IE it looks like this:
https://vborg.vbsupport.ru/external/2009/07/17.png
And this ist my forumhome_forumbit_level2_post:
<tr align="center">
<td class="alt2"><if condition="$vboptions[customimg_enabled] == 1">
<if condition="$forum[customimg] == ''">
<img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].png" alt="" border="0" id="forum_statusicon_$forum[forumid]" />
<else />
<img src="$forum[customimg]" alt="" border="0" id="forum_statusicon_$forum[forumid]" />
</if>
<else />
<img border="0" src="images/misc/iconforums/$forum[forumid].JPG" />
</if>
<td class="alt1Active" align="$stylevar[left]" id="f$forum[forumid]">
<div>
<img class="inlineimg" src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].png" alt="" border="0" hspace="4px" align="left" />
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a>
<if condition="$show['browsers']"><span class="smallfont">(<phrase 1="$forum[browsers]">$vbphrase[x_viewing]</phrase>)</span></if>
</div>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['forumsubscription']"><div class="smallfont"><strong><a href="subscription.php?$session[sessionurl]do=removesubscription&f=$forum[forumid]" rel="nofollow">$vbphrase[unsubscribe_from_this_forum]</a></strong></div></if>
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
<td class="alt2" width="175">$forum[lastpostinfo]</td>
<td class="alt1" width="65">$forum[threadcount]</td>
<td class="alt2" width="65">$forum[replycount]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1" width="120"><div class="smallfont">$forum[moderators] </div></td>
</if>
</tr>
$childforumbits
What can I change to get it to work like abdulbasitsaeed - with a separator between the category icon and it's title & description
Thanks a lot
Karin
Black Tiger
07-27-2009, 12:06 AM
I've got a couple of questions because I like this mod very much, but I don't have and I don't want an icon for each and every forum.
For example, I've got an information and a news forum on which I don't want icons, they should remain standard.
Then I have some receiver forums and for every receiver brand I want an icon.
Then the admin/mod forums I don't want an icon.
Is there a way to make it so that icons can be put in on a per-forum base?
My second question is what the measures (height and width) of the icons should be. I can download gifs at many places, some a bit bigger, others a bit wider. Or does this get auto-adjusted?
adamskiii
07-29-2009, 09:00 PM
how can I get the specific forum icons to show up in the spot where the status icons are? I dont want to replace the status icons with a new ones but to just have a different icon per forum in the spot of the status icon.
Thanks
TheLastSuperman
07-30-2009, 01:32 AM
I've got a couple of questions because I like this mod very much, but I don't have and I don't want an icon for each and every forum.
For example, I've got an information and a news forum on which I don't want icons, they should remain standard.
Then I have some receiver forums and for every receiver brand I want an icon.
Then the admin/mod forums I don't want an icon.
Is there a way to make it so that icons can be put in on a per-forum base?
My second question is what the measures (height and width) of the icons should be. I can download gifs at many places, some a bit bigger, others a bit wider. Or does this get auto-adjusted?
You can simply not upload the image for the forum... that might cause the infamous "Red X" missing symbol in IE so to solve it all just make a transparent .gif file 1 x 1 pixels and use it for all the ones you don't want to have a forum, easy work around IMO but Sofia might suggest something more useful.
You resizing is the best method so it does not require code (if you don't have an graphics program, google GIMP or if no interest in doing it and just resizing on occasion, google Irfanview) but you can add this to the code:
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" width="50px" height="50px"/></a>
S-MAN
edit: Sofia, you can add this as a demo (even though Screenshot should be sufficient but if you like) www.tournamentgamingworld.com/online
TheLastSuperman
07-30-2009, 01:35 AM
how can I get the specific forum icons to show up in the spot where the status icons are? I dont want to replace the status icons with a new ones but to just have a different icon per forum in the spot of the status icon.
Thanks
https://vborg.vbsupport.ru/showpost.php?p=1816283&postcount=18
Perhaps? I saw this somewhere else, it can be done and I believe it was in one of Sofia's post too...
Secret Warez
07-31-2009, 02:02 AM
Good job.
skylab
07-31-2009, 06:39 AM
Hey Joe. :)
Try to upload images in the folder misc.
If it doesn't work, you can test this:
Only if you have 3.7.x and newer version (3.8.x)
You can have specific status icons by forum.
With no product, no template modification and very easy.
https://vborg.vbsupport.ru/
Installation
1. AdminCP
AdminCP >> Forums & Moderators >> Forum Manager >> Choose a forum
In this forum, find: Style Options
In Style Options, we can modify Prefix for Forum Status Images.
This setting allows you to have a prefix by forum that will be used on status icons filenames.
You must enter here your forum ID.
How I can find my forum ID?
On the same page, at the top of this page, you've your forum name and your forum ID.
https://vborg.vbsupport.ru/
In this example, ID is "2", so you must enter "2" in Prefix for Forum Status Images.
Then, I use "_" so that it is more clean on your filenames.
2. Images
Now, you have to create your images for every forum where you want to have specific status icons.
Your images must have this name:
ID_forum_link.gif
ID_forum_new.gif
ID_forum_new_lock.gif
ID_forum_old.gif
ID_forum_old_lock.gif
In my example, images have this name:
2_forum_link.gif
2_forum_new.gif
2_forum_new_lock.gif
2_forum_old.gif
2_forum_old_lock.gif
Finally, upload images into "images/yourstyle/statusicon".
This doesn't seem to work for me. Did everything perfectly as well.
thanks for this great work, it is great, I've tested on firefox, IE and chrome, with 3.8.4
thank you very much
Drache
09-11-2009, 07:10 AM
Very nice mod thanks. Could you tell me how do I make the sub forum list look like those 2 in demo site too please? Thank you
mohassanuk
09-13-2009, 12:31 PM
Where is the download, it says no files uploaded. I'd really like to download this mod.
Tibia4
09-27-2009, 11:44 PM
very nice, I Installed it and I love it :D
Shotgunmaniac
09-29-2009, 05:55 PM
Just got round to trying this, it's great.
However, i have 1 little problem, I have set the forumid, and 1image shows for every forum.
Javierogo
10-03-2009, 10:14 PM
INSTALLED!
This code is perfect. Congrats!
:up:
mallick
10-21-2009, 03:27 PM
very nice exactly wot i was looking for
vaguard
10-26-2009, 08:49 PM
Thank you so much! I was really looking for this, no problems as directions were very clear and easy to follow. Again thank you.
RenatoMN
10-27-2009, 06:02 AM
To fix:
1- division between icon/forum title & description
2- error "image not found" in IE browser
3- both fixes
1-
<div style='float:left'><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" /></a></div>
2-
<if condition="in_array($forum[forumid],array('2','3','4'))"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" /></a></if>
3-
<if condition="in_array($forum[forumid],array('2','3','4'))"><div style='float:left'><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" /></a></div></if>
Note: if using fixes 2 and 3, replace ('2','3','4') with the forum IDs you want the image to be show. I hope you don't wonder "why the new uploaded image for forum 50 isn't be showing up?" -> ADD THE ID THERE! :P
*Untested code*
Erez Wolf
11-05-2009, 12:08 PM
Hello!
I'm having trouble getting this code to work.
I'm using version 3.8.3, have edited the code as it said and uploaded gifs for all the forums in the new directory "iconforums" and this is the resault:
105904
i guess it supposed to be something simple that i'm missing but i don't know what it is.
please help.
Thank you,
Erez.
RenatoMN
11-09-2009, 04:20 AM
Hum.. the images "are being show"...
Right click the "x" errors and see the properties and check if the images are right uploaded to the address informed for each forum.
vijayninel
11-10-2009, 02:46 AM
Thanks for this great mod ..but how can I get them to appear for subforums in forumdisplay ?
Edit..sorry..got it now... :)
compact123
11-18-2009, 05:31 PM
please update that for vb4 sir...
thanks >_<
bluej
11-25-2009, 06:05 AM
thank you sophia for this great mod :)
i got the icons installed and looking great, but one problem i see is that the gradient on my footer is not extending all of the way to the end of the footer, it is short about an half inch...
any idea why this is or what i can do about it?
thanks for your help and great work :)
ViciousCode
12-06-2009, 07:41 PM
why does it have to be gif? i think PNG's are better!
MattIS
01-09-2010, 05:08 AM
why does it have to be gif? i think PNG's are better!
PNGs have a hard time being read in IE. Use them though tell IE users to use firefox or something.
Can anyone tell me how I would add this to Sub-Forums?
Gigio755
01-15-2010, 11:47 AM
Please Sofia make it compatible with Vbulletin 4 :(
pleaaaase
a9eel
01-16-2010, 06:01 AM
thx sofia good jop :)
Rideharder
02-11-2010, 07:51 AM
To fix:
1- division between icon/forum title & description
2- error "image not found" in IE browser
3- both fixes
1-
<div style='float:left'><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" /></a></div>
2-
<if condition="in_array($forum[forumid],array('2','3','4'))"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" /></a></if>
3-
<if condition="in_array($forum[forumid],array('2','3','4'))"><div style='float:left'><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" /></a></div></if>
Note: if using fixes 2 and 3, replace ('2','3','4') with the forum IDs you want the image to be show. I hope you don't wonder "why the new uploaded image for forum 50 isn't be showing up?" -> ADD THE ID THERE! :P
*Untested code*
Thanks you so much!
if condition="in_array($forum[forumid],array('2','3','4'))"><div style='float:left'
or
if condition="in_array($forum[forumid],array('2','3','4')"><div style='float:left'
You have two ))
New Joe
02-11-2010, 07:54 AM
Please Sofia make it compatible with Vbulletin 4 :(
pleaaaasehttps://vborg.vbsupport.ru/showthread.php?t=229529
Take a slow read through the posts, many ways to get different looking icons.
Rideharder
02-11-2010, 07:59 AM
if condition="in_array($forum[forumid],array('2','3','4'))"><div style='float:left'
or
if condition="in_array($forum[forumid],array('2','3','4')"><div style='float:left'
You have two ))
Erica1977
02-11-2010, 02:11 PM
Thank You Sofia works great with 3.8.4 Thanks again great mod.
hayaldunya
02-17-2010, 08:47 AM
Thank You :up:
Darkgardevoir
02-18-2010, 11:57 PM
Hi how can i put this in the subforums too?
Kimberley
03-06-2010, 06:49 PM
Can someone please tell me how I can get the icon inline with the statusicon so it looks centered next to the forum description and subforums?
You will notice in the sections with more subforums that it sits at top.
http://www.relentlessflame.com/forum/index.php
That is forumhome
I appreciate help fixing this please
I also tried to seperate that section with a line like the previous posts but it did NOT work at all so I am hoping just getting this sorted will work for me.
Thank you in advance.
Shotgunmaniac
03-09-2010, 01:43 PM
Kimberley, what's the name of the skin you are using ?
TimberFloorAu
03-10-2010, 01:18 AM
Can someone please tell me how I can get the icon inline with the statusicon so it looks centered next to the forum description and subforums?
You will notice in the sections with more subforums that it sits at top.
http://www.relentlessflame.com/forum/index.php
That is forumhome
I appreciate help fixing this please
I also tried to seperate that section with a line like the previous posts but it did NOT work at all so I am hoping just getting this sorted will work for me.
Thank you in advance.
I would be more concerned that your forum links, when clicking the status/forum icon take you to an unreachable place !
Perhaps thats a guest thang, but even so not good coding, you should fix this.
L0rd-81
03-14-2010, 12:04 PM
Thank You for this :D It?s great and functionally.
Can you say me where i can this make in subforum?
My english is no good, sorry
vBseo.it
08-20-2010, 09:26 AM
where is the file to download
Mehryar10
08-20-2010, 10:50 PM
where's the file ?!?!
fxwoody
09-25-2010, 05:22 PM
Super mod! Installed with ease ,tho, i'm still struggling with the alignment !
Tried the setup from Rideharder and had no good results! :(
I'm running 3.8.6 , if anyone found out a way to do it, it would really cool to know how ;)
fxwoody
09-26-2010, 11:01 AM
Ok, not sure if it will work for every one but i pasted the code in the subforum and got little icons showing too ;)
Here's what i did:
Find this in the "forumhome_subforumbit_post" (you will need to edit every style template that you have)
<img class="inlineimg" src="$stylevar[imgdir_statusicon]/subforum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /> <a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
Add the modified code before it:
<!---iconforums--->
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].png" hspace="2px" align="left" width="25px" height="25px" /></a>
<!---/iconforums--->
FTP the image to match the forumdisplay , adjust the Width & Height to your taste, and it should be all good ;)
fxwoody
01-15-2011, 10:55 PM
Just in case anyone would like this for V4.xxx
Reminder: don't forget to change the extension to your images (.jpg .gif .png)
also, adjust the size with in the codes for better fit on your board ;)
Have fun!
~~~~~~~~~~~~~~VB 4.1.1~~~~~~~~~~~~~~
Find in "forumhome_forumbit_level2_post":
<div class="datacontainer">
<div class="titleline">
<h2 class="forumtitle"><a href="{vb:link forum, {vb:raw forum}}">{vb:raw forum.title}</a></h2>
<vb:if condition="$show['browsers']"><span class="viewing">({vb:raw forum.browsers} {vb:rawphrase viewing})</span></vb:if>
</div>
<vb:if condition="$show['forumdescription']"><p class="forumdescription">{vb:raw forum.description}</p></vb:if>
Replace with:
<div class="datacontainer">
<img src="images/misc/iconforums/{vb:raw forum.forumid}.png" alt="{vb:raw forum.title}" style="float: left; margin-right: 4px;" />
<div>
<h2 style="font-weight:bold; font-size:13px;"><a href="{vb:link forum, {vb:raw forum}}">{vb:raw forum.title}</a></h2>
<vb:if condition="$show['browsers']"><span class="viewing">({vb:raw forum.browsers} {vb:rawphrase viewing})</span></vb:if>
<vb:if condition="$show['forumdescription']"><p>{vb:raw forum.description}</p></vb:if></div>
If you have subforums
In "forumhome_subforumbit_post" replace with this:
<li class="subforum">
<img class="inlineimg" src="{vb:stylevar imgdir_statusicon}/{vb:raw forum.imageprefix}subforum_{vb:raw forum.statusicon}-48.png" alt="" border="0" id="forum_statusicon_{vb:raw forum.forumid}" />
<vb:if condition="$depth > 1"></vb:if>
<a href="{vb:link forum, {vb:raw forum}}">{vb:raw forum.title} <img src="images/misc/iconforums/{vb:raw forum.forumid}.png" alt="{vb:raw forum.title}" style="float: left; margin-right: 4px; width: 25px; height: 25px;"/></a>
</li>
Sworm
03-15-2011, 08:25 PM
There's a way to put the images on the right (next forum title) and not on the left?
fxwoody
03-16-2011, 09:33 AM
There's a way to put the images on the right (next forum title) and not on the left?
You mean after the text?
Sworm
03-16-2011, 04:54 PM
You mean after the text?
Yes after the text but on the extreme right, before the "Last post" column..... Like now the icons are together the vbulletin forum icon , and i don't like..... IMHO
Thanks
ShawneyJ
06-04-2011, 02:50 AM
To fix:
1- division between icon/forum title & description
2- error "image not found" in IE browser
3- both fixes
1-
<div style='float:left'><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" /></a></div>
2-
<if condition="in_array($forum[forumid],array('2','3','4'))"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" /></a></if>
3-
<if condition="in_array($forum[forumid],array('2','3','4'))"><div style='float:left'><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left" /></a></div></if>
Note: if using fixes 2 and 3, replace ('2','3','4') with the forum IDs you want the image to be show. I hope you don't wonder "why the new uploaded image for forum 50 isn't be showing up?" -> ADD THE ID THERE! :P
*Untested code*
thank you very much RenatoMN. i used code 2 worked great 3.8.7.
how annoying having an "x" on every forum where you dont need to use an image only with IE.
cheers mate.
montsa007
09-23-2011, 04:14 AM
How do i add icons in child forums?
Fready
09-23-2011, 08:20 AM
This works on vB 3.8 and it is much easier to use, no templates to edit;
https://vborg.vbsupport.ru/showthread.php?t=179596
amine13420
11-10-2011, 02:13 AM
Worked fine,
Just need some website where to download icons :)
cstreater
01-01-2012, 01:57 AM
This works on vB 3.8 and it is much easier to use, no templates to edit;
https://vborg.vbsupport.ru/showthread.php?t=179596
That hack is for categories. This one is for individual forums.
duketxboy
01-01-2012, 08:45 PM
I got it just curious on how to just put one status icon, I upload the file I want to take the forum icons place it shows up but on the side heres a link>>>www.horsepowertech.net I don't have it up right now but you should get the idea
rpgamersnet
02-13-2012, 04:04 PM
Works perfectly. I made some minor tweaks to help with centering, I put the code inside a table... otherwise, just what I needed! thanks
rockerzteam
10-10-2012, 09:55 PM
Are these files still available anywhere?
crouzmind
11-29-2012, 06:42 PM
Hey Joe. :)
Try to upload images in the folder misc.
If it doesn't work, you can test this:
Only if you have 3.7.x and newer version (3.8.x)
You can have specific status icons by forum.
With no product, no template modification and very easy.
http://www.forum-test.fr/Sans%20titre-2.png
Installation
1. AdminCP
AdminCP >> Forums & Moderators >> Forum Manager >> Choose a forum
In this forum, find: Style Options
In Style Options, we can modify Prefix for Forum Status Images.
This setting allows you to have a prefix by forum that will be used on status icons filenames.
You must enter here your forum ID.
How I can find my forum ID?
On the same page, at the top of this page, you've your forum name and your forum ID.
http://www.forum-test.fr/Sans%20titre.png
In this example, ID is "2", so you must enter "2" in Prefix for Forum Status Images.
Then, I use "_" so that it is more clean on your filenames.
2. Images
Now, you have to create your images for every forum where you want to have specific status icons.
Your images must have this name:
ID_forum_link.gif
ID_forum_new.gif
ID_forum_new_lock.gif
ID_forum_old.gif
ID_forum_old_lock.gif
In my example, images have this name:
2_forum_link.gif
2_forum_new.gif
2_forum_new_lock.gif
2_forum_old.gif
2_forum_old_lock.gif
Finally, upload images into "images/yourstyle/statusicon".
i do the same but when i put the prefix 2_ and click on the save button its show me database error . can you help me about this ?
SoniaTel
12-27-2012, 11:03 AM
Nice addition, thanx
Goomzee
07-02-2014, 04:52 AM
How do i put image in sub-forum?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.