View Full Version : Forum Home Enhancements - Seperate Forum Categories
RS_Jelle
08-10-2006, 10:00 PM
Separate Forum Categories
Version: 1.0.1
Author: RS_Jelle
Description: This mod separates each forum category on the forum home without any template edits. The category header is added to the top of each separated category. This will be done for ALL the styles on your forum. Have a look at the attached screenshot and everything will become clear if you don't get the point :)
Why? I created this mod because someone requested (https://vborg.vbsupport.ru/showthread.php?t=123503) it.
Limitations:
It's possible that this mod won't work properly on highly customized styles.
The 'Last Post' column can be smaller than normal if the thread titles of the category forums are all small (you can only fix this with a template edit). Have a look at the attached screenshot to see this limitation.
https://vborg.vbsupport.ru/external/2010/10/30.jpg
================================================== ========================
Installation
================================================== ========================
Import the product
Enjoy!
================================================== ========================
History
================================================== ========================
1.0.0: Initial release
1.0.1: Moved the version check to the vBulletin.org version check system
If you use this add-on, please click install (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=123713) to say thanks and to receive updates.
RS_Jelle
08-11-2006, 09:47 PM
First post reserved :)
A bit more about the limitations:
The category header bar is necessary, otherwise your layout will be screwed. It can't be done without it.
I will never fix these limitations. The mod is about doing it without any template edits and the only way to get around the limitations are template edits.
Makaveli105
08-11-2006, 09:50 PM
Nice release, I'd install this if the Forum, Last Post, Threads, and Posts bar was placed under the category bar.
* Makaveli105 watches this mod :D
RS_Jelle
08-11-2006, 10:01 PM
Nice release, I'd install this if the Forum, Last Post, Threads, and Posts bar was placed under the category bar.
* Makaveli105 watches this mod :D
That's also a limitation, then you have to do a template edit:
First install the product
Open forumhome_forumbit_level1_nopost and remove the following code:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Open forumhome_seperate_forumcats and add the following code at the end of the template:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Ntfu2
08-11-2006, 11:37 PM
2 hours after i did the template edits too :D
Owell, nice job with the plugin version ;)
Milad
08-12-2006, 12:19 AM
I did something similar but removed it because of the same limitation.
We can do this also by adding a white <tr><td></td></tr> but the border will style be shown.
BoYagoob
08-12-2006, 04:09 AM
installed ..
RS_Jelle
08-12-2006, 04:15 AM
We can do this also by adding a white <tr><td></td></tr> but the border will style be shown.
Indeed, that's the first thing I tested, but that was very ugly with that border and background color -like you said-.
jellybaby
08-12-2006, 05:52 PM
Can anyone help me solve this problem please - I have two description bars!
WeArab
08-13-2006, 09:09 AM
You rock man!
Installed!
Thank you!! :)
sudn3sc3d
08-14-2006, 08:54 PM
thanks alot mate installed.
lillylissy
08-15-2006, 08:43 AM
Thank you very much Jelle for this great hack!
Particularly beautifully: It is valid XHTML! ;)
Limitations:
The 'Last Post' column can be smaller than normal if the thread titles of the category forums are all small (you can only fix this with a template edit).
Find in:
- FORUMDISPLAY
- FORUMHOME
- forumhome_seperate_forumcats
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$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>
And replace it with (for example):
<tr align="center">
<td class="thead" width="5%"> </td>
<td class="thead" width="50%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="35%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tr>
Notice how not all of the table cells (<td> tags) have width attributes. You need to give each cell a width attribute, and the total widths need to equal 100% of the horrizontal space. Percentages work well for this.
Kind Regards
mr bix
08-23-2006, 08:38 PM
That's also a limitation, then you have to do a template edit:
First install the product
Open forumhome_forumbit_level1_nopost and remove the following code:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Open forumhome_seperate_forumcats and add the following code at the end of the template:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Excuse for my english :).
But if you change this templates, the first category (Main Category by installation default) didn't show. Is correct?
Snake
08-25-2006, 12:31 PM
Very nice. Thank you! :)
tobybird
08-29-2006, 12:02 PM
Excuse for my english :).
But if you change this templates, the first category (Main Category by installation default) didn't show. Is correct?
I experienced this as well.
eta: To expand... the category for the first forum disappeared and the category/forum header did not switch as expected for the remaining forums.
Any ideas?
jcodemasters
08-29-2006, 03:02 PM
thanks
That's also a limitation, then you have to do a template edit:
First install the product
Open forumhome_forumbit_level1_nopost and remove the following code:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Open forumhome_seperate_forumcats and add the following code at the end of the template:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Not workin' for me :|
Hornstar
09-06-2006, 02:52 AM
They also show how to do this manually over at vb.com incase you have problems with this one.
Sidewindr
09-07-2006, 04:20 AM
Would be better if you could specify a depth.
kevinj
09-17-2006, 09:56 PM
Just what i was looking for; thanks :)
babyfacejustin
09-28-2006, 07:16 AM
I hate to sound stupid, but where do you import it at.
RS_Jelle
09-28-2006, 01:26 PM
I hate to sound stupid, but where do you import it at.
AdminCP -> Plugins & Products -> Manage Products -> Add/Import Product
Klaymen TK
09-28-2006, 03:54 PM
Thanks for it. :)
Minha
10-12-2006, 04:50 PM
Nice work ;), but only one question. The diferents forums are nonaligned.
Edit: Installed http://img119.imageshack.us/img119/4746/musikwos15yb.gif
Tacama
10-13-2006, 04:00 AM
Nice work...
Running smoothly on 2.6.2, everything aligned, etc...
Installed :)
Ohiosweetheart
10-14-2006, 11:28 PM
Installed without a problem, everything aligned and working like a charm.
Thanks RS for another nice hack! :D
N-0p3rz
10-17-2006, 04:11 AM
They also show how to do this manually over at vb.com incase you have problems with this one.
any chance of a link to this?
N-0p3rz
10-17-2006, 04:18 AM
nevermind I found it
RS_Jelle
10-17-2006, 04:18 AM
any chance of a link to this?
You can find template edit mods for this here (https://vborg.vbsupport.ru/showthread.php?t=123530) and here (https://vborg.vbsupport.ru/showthread.php?t=127875) ;)
Edit: too late, lol :p
@Minha: that's a limitation, you can't fix that with a product. Then you have to do template edits (see the other two mods above).
tpearl5
10-23-2006, 02:22 AM
humm, I'm getting a strange error:
n/m, I'm a retard. Wrong vB version...
Johnnnie
10-23-2006, 11:57 PM
Thx. Jelle works perfekt.
Also i have make the changes from lillylissy, but the columns are not the same in the forums always is lastpost the problem.
Do i missed something?
as you can see http://www.gc-talk.nl
regards, John
RS_Jelle
10-24-2006, 04:14 AM
That's a limitation of doing it with a product file (it's stated clear in the first post), otherwise you need to do some template edits. There are also two template edits mods if you want to fix this, you can find them here (https://vborg.vbsupport.ru/showthread.php?t=123530) and here (https://vborg.vbsupport.ru/showthread.php?t=127875) ;)
Johnnnie
10-24-2006, 11:18 AM
Jelle, correct i know that this is a limitation but as i wrote i did make also the changes in the templates as lillylissy wrote on post nr.12.
I hoped that this will fixed the lastpost collumn, perhaps that lillylissy give a reply?
mescalin
10-28-2006, 09:50 PM
installer did not accept that xml. my board is 3,62..
RS_Jelle
10-28-2006, 09:59 PM
installer did not accept that xml. my board is 3,62..
Normally, it should work fine on vB 3.6.2. I've got a clean vB 3.6.2 install and it imports the product without any problems :)
What's the error it gives on your site?
Stavs16
11-14-2006, 12:24 AM
this did not change anything.... heres a look at my website after implementing it www.xcaliburforums.com/index.php
Tru2Chevy
11-14-2006, 01:37 PM
Installed and working fine on 3.6.2 here....
Thanks!
- Justin
RS_Jelle
11-14-2006, 03:25 PM
this did not change anything.... heres a look at my website after implementing it www.xcaliburforums.com/index.php
Which other mods (using plugins) are you using on your forum? I think one of them are causing the incompatibility.
Or have you modified some of the forumhome templates? Try creating a new style to force all the default templates etc. :)
MeMySelfNi
11-18-2006, 02:53 PM
*installed*
RS_Jelle
11-19-2006, 04:37 PM
A small update to make it myself more easier: I moved the version check to the vBulletin.org version check system instead of a file on my own site :)
pr0team.net
11-19-2006, 07:05 PM
how to unistall ?!?!
RS_Jelle
11-19-2006, 07:12 PM
how to unistall ?!?!
AdminCP -> Plugins & Products -> Manage Products -> Unistall (in the dropdown box of the product) ;)
pr0team.net
11-19-2006, 07:22 PM
Yes don't work....
confuse..
RS_Jelle
11-19-2006, 07:51 PM
Yes don't work....
confuse..
That's a vBulletin problem then, not a problem of this mod normally :)
Do you get a specific error message or something like that?
taydu
11-24-2006, 05:27 AM
I experienced this as well.
eta: To expand... the category for the first forum disappeared and the category/forum header did not switch as expected for the remaining forums.
Any ideas?
me too any idea how to solve this ???
HellRazor
11-24-2006, 02:23 PM
That's a limitation of doing it with a product file (it's stated clear in the first post), otherwise you need to do some template edits. There are also two template edits mods if you want to fix this, you can find them here (https://vborg.vbsupport.ru/showthread.php?t=123530) and here (https://vborg.vbsupport.ru/showthread.php?t=127875) ;)
These fixes seems to post the entire hack again as template mods.
Short of uninstalling this addon and using one of the other hacks, what mods do we need to make (with this addon installed) to make all of the columns match up? (The sizes are all off on the "last post" column).
Devil Woman
11-24-2006, 05:11 PM
Thanks for this, just what I have been looking for :)
sunnycher
11-26-2006, 12:20 PM
Perfect! Thank You! Installed!
taydu
11-29-2006, 01:25 AM
Thank you very much Jelle for this great hack!
Particularly beautifully: It is valid XHTML! ;)
Find in:
- FORUMDISPLAY
- FORUMHOME
- forumhome_seperate_forumcats
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$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>
And replace it with (for example):
<tr align="center">
<td class="thead" width="5%"> </td>
<td class="thead" width="50%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="35%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tr>
Notice how not all of the table cells (<td> tags) have width attributes. You need to give each cell a width attribute, and the total widths need to equal 100% of the horrizontal space. Percentages work well for this.
Kind Regards
I did this and only the main category get the right width for it column, other category column width are mess up
ninjamaster
11-29-2006, 07:35 PM
thanks for this ;)
Rickie3
11-29-2006, 08:39 PM
works great on 3.5 *installed* if anyone wants it ive edited out the executioner 5,this is for version 3.5
KURTZ
12-04-2006, 04:18 PM
interested in this hack ...
just INSTALLED and FIXED :)
Magnetism
12-07-2006, 07:50 AM
Installed great mod, thanx alot.
Have a look at the attacked screenshot
lol :D
RS_Jelle
12-09-2006, 12:43 PM
Have a look at the attacked screenshot
lol :D
Fixed :) :knockedout:
Smoothie
12-11-2006, 01:28 AM
Can someone clarify the needed template edits to perform to make the columns (forums/last post/threads/posts) line up properly? After reading through all 4 pages of this it seems there is some confusion as to what is needed.
sunnycher
12-11-2006, 01:33 AM
I'd like to know also Smoothie! I installed it and my columns were all out of wack so I uninstalled it.
Raw Sugar
12-11-2006, 03:46 AM
I believe the template that needs editing is 'forumhome_forumbit_level1_nopost'... I've had to fix it quite a few times. Just change the order. Anything that needs to be edited would be under the 'forumhome' templates.
So check those. :)
LordDB
12-17-2006, 07:26 AM
RS_Jelle, nice hack! ;)
How do you take out the 'Forum - Last Post - Threads - Posts' bar, as I feel this would look better if it was removed so as to only display the Forum Name?
Your advice would be appreciated on this!
Br.
Talisman
12-17-2006, 10:36 AM
Can't be sure from what's posted here. Is this working or not?
sunnycher
12-17-2006, 02:16 PM
I like it, I just don't like how it doesn't align all the forums so I uninstalled it.
HellRazor
12-18-2006, 07:37 AM
Can't be sure from what's posted here. Is this working or not?
It works but causes some alignment problems with some of the cells on the forum home. There is a way to fix it by editing templates, but no one has yet posted exactly how to do that.
tschai
12-18-2006, 04:06 PM
One of the easiest, yet most-usefull add-on; nice work; worked flawless on 3.6.4
*clicks install*
TrIn@dOr
12-18-2006, 04:44 PM
Thanks.
Smoothie
12-19-2006, 12:33 AM
One of the easiest, yet most-usefull add-on; nice work; worked flawless on 3.6.4
*clicks install*Yea, looks nice, except one minor problem. Just like everyone else who has installed this, your columns are not aligned properly. :rolleyes:
BigJimTheLug
12-24-2006, 07:59 AM
this is great!
I love it!
One thing, how can I display an adsense banner 720 x 90 in between some of the forum categories?
thanks, I love this!
I like it, I just don't like how it doesn't align all the forums so I uninstalled it.
Same here.
Is there any way to fix that?
cupra
12-25-2006, 09:45 PM
thx a lot - install!
zeropaid
12-28-2006, 01:13 AM
Here is what you want to do if you are having problems with misaligned columns.
Edit these 2 templates
- FORUMHOME
- forumhome_seperate_forumcats
Replace forumhome_seperate_forumcats with the following code:
</table>
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
<td class="thead" width="5%"> </td>
<td class="thead" width="70%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="15%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tbody>
In FORUMHOME
Look for this
<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
and put this after
<tbody>
<td class="thead" width="5%"> </td>
<td class="thead" width="70%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="15%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tbody>
If you see a double row of the table headers, look for a set of code like the above and delete it. It should be right after the code you just added above.
Smoothie
12-28-2006, 01:42 AM
Here is what you want to do if you are having problems with misaligned columns.
Edit these 2 templates
- FORUMHOME
- forumhome_seperate_forumcats
Replace forumhome_seperate_forumcats with the following code:
</table>
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
<td class="thead" width="5%"> </td>
<td class="thead" width="70%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="15%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tbody>
In FORUMHOME
Look for this
<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">and put this after
<tbody>
<td class="thead" width="5%"> </td>
<td class="thead" width="70%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="15%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tbody>
If you see a double row of the table headers, look for a set of code like the above and delete it. It should be right after the code you just added above.
Hi, did you apply the above fix to your forums? Because if you did, it ain't working. The columns are not aligned properly. I read that even with the above fix it may or may not align the columns. Part of the problem is the length of the last post title. It may be need to be shortened in the admin cp.
zeropaid
12-28-2006, 02:03 AM
I see the problem, I will work on a fix and post here asap.
danhaga
12-28-2006, 11:12 AM
is it possible to use html in the newly created sepparation? For example, is there a way i could insert a banner in the new space?
HellRazor
12-29-2006, 07:51 AM
I see the problem, I will work on a fix and post here asap.
Thanks for doing this! Looking forward to your fix.
Smoothie
12-29-2006, 02:55 PM
I tried messing around with the templates to get this to line up correctly. I edited forumhome and the template that gets installed with this mod, I think it was called forumhome_separate_categories. I got them to align perfectly. Problem was that when the browser window was large, the columns aligned, but when you resized the browser window smaller, the columns became unaligned.
the percentages were like this, for both templates;
<td class="thead"> </td>
<td class="thead" width="55%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="25%">$vbphrase[last_post]</td>
<td class="thead" width="10%">$vbphrase[threads]</td>
<td class="thead" width="10%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
RS_Jelle,
do you plan on fixing this "problem" (if you can call it).
I really would like to use this script.
Thank you
stan111
01-25-2007, 04:16 AM
confusing .. anyone make it easier for me :confused:
and where do i upload this file?
RS_Jelle
01-25-2007, 04:42 AM
confusing .. anyone make it easier for me :confused:
and where do i upload this file?
AdminCP -> Plugins & Products -> Manage Products -> Add/Import Product ;)
Select the file and hit the Import button, that's all.
@everyone: I'm planning a fix for the alignment problem, but it will require template edits ofcourse.
kal-L
01-26-2007, 04:49 PM
Great!! Works like a charm mate! So much faster than manual edits :D
joeychgo
02-01-2007, 02:18 AM
@everyone: I'm planning a fix for the alignment problem, but it will require template edits ofcourse.
IM looking forward to thise
Ohiosweetheart
02-01-2007, 02:19 AM
AdminCP -> Plugins & Products -> Manage Products -> Add/Import Product ;)
Select the file and hit the Import button, that's all.
@everyone: I'm planning a fix for the alignment problem, but it will require template edits ofcourse.
RS, any idea when this fix will come about?
NaughtyStud
02-01-2007, 11:00 AM
Really nice mod, thanks and installed. ;)
oldfan
02-09-2007, 01:01 AM
thanks, installed
GruntHalo
03-14-2007, 02:52 PM
Alright, I wanted to edit this myself without this md how would I be able to do it?
I'm trying to edit the entire category table as if it were all in one template, this is what I'm trying to do:
https://vborg.vbsupport.ru/showthread.php?t=142042
Thank you, please PM so I know you've replied.
Ohiosweetheart
03-14-2007, 07:58 PM
@everyone: I'm planning a fix for the alignment problem, but it will require template edits ofcourse.
Still waiting for the fix :)
Smoothie
03-15-2007, 01:31 AM
thanks, installedYour columns are not correctly aligned either. :p
Smoothie
03-18-2007, 08:37 PM
Installed and columns aligned. :)
brookelyn
03-19-2007, 01:21 AM
it would be great if this thread was updated to include the correct template changes as an option in the orginal post to achieve the forums/threads/posts below the category and have the columns aligned properly. there are so many different options and instructions contained in this thread it is confusing to know which template edits to follow.
Smoothie
03-19-2007, 01:29 AM
I guess some of it depends on the style you use. Not all the code is located in the same place. And trying to do this with a product doesn't work perfectly, not without template edits. One of the biggest issues is the last post column. Depending on the length of the last post, that can throw it all out of whack. You can control the length of the last post info in the admin cp. But you won't need to do that if you set a fixed width for that column.
What I did was remove the threads and posts columns and added a fixed width to the last post column. But, most won't want to remove those 2 columns.
ArgylePhoto
03-19-2007, 07:09 PM
I have this installed and have got the spacing sorted, I've also managed to ge the forum title above the 'forum - last post - etc' row, and here's where the problem comes in: my first category title isn't showing correctely, it's showing whatever the title of the bottom forum is.
IE atm the title of my first category should be 'Welcome' but it's showing up as 'Feedback'. Feedback is the forum at the very bottom of the page in the final category, whatever I change the bottom forum to is what is displayed as the title of the first category.
Needless to say I'm confused! Can anyone help?
It happened after I altered the FORUMHOME template, if it helps this is what it looks like now...
$stylevar[htmldoctype]
<html 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 class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
<phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
</table>
<br />
<!-- / guest welcome message -->
</if>
<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
<tr>
<td class="thead" width="5%"> </td>
<td class="thead" width="70%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="15%"><center>$vbphrase[last_post]</center></td>
<td class="thead" width="5%"><center>$vbphrase[threads]</center></td>
<td class="thead" width="5%"><center>$vbphrase[posts]</center></td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tr>
$forumbits
<tr>
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><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]" rel="nofollow">$vbphrase[view_forum_leaders]</a></if>
</strong></div></td>
</tr>
</tbody>
</table>
$forumhome_markread_script
<!-- /main -->
<br />
<br />
<!-- what's going on box -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
</tr>
</thead>
<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]" rel="nofollow">$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]" rel="nofollow"><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>
<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>
</div>
</td>
</tr>
</tbody>
<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>
<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>
</table>
<br />
<!-- end what's going on box -->
<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
<td>
<table cellpadding="2" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
<td class="smallfont"> $vbphrase[forum_contains_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
<td class="smallfont"> $vbphrase[forum_contains_no_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
<td class="smallfont"> $vbphrase[forum_is_closed_for_posting]</td>
</tr>
</table>
</td>
<if condition="!$show['guest']">
<!-- member logout -->
<td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
<!-- end member logout -->
</if>
</tr>
</table>
<!-- / icons and login code -->
$footer
</body>
</html>
Smoothie
03-22-2007, 01:57 AM
How do we get "Forum" "Last Post" "Threads" "Posts" under category name on forumhome?
Dream
03-22-2007, 02:11 AM
great little mod thanks
Fungsten
03-22-2007, 08:33 PM
Installed.
Question: Will anything be added soon that the MOD will only apply to certain styles and not all?
Smoothie
03-22-2007, 08:46 PM
If you use this mod, your forum categories will not collapse properly.
girlspeedo
03-26-2007, 08:52 AM
I have this installed and have got the spacing sorted, I've also managed to ge the forum title above the 'forum - last post - etc' row, and here's where the problem comes in: my first category title isn't showing correctely, it's showing whatever the title of the bottom forum is.
IE atm the title of my first category should be 'Welcome' but it's showing up as 'Feedback'. Feedback is the forum at the very bottom of the page in the final category, whatever I change the bottom forum to is what is displayed as the title of the first category.
Needless to say I'm confused! Can anyone help?
It happened after I altered the FORUMHOME template, if it helps this is what it looks like now...
$stylevar[htmldoctype]
<html 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 class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
<phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
</table>
<br />
<!-- / guest welcome message -->
</if>
<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
<tr>
<td class="thead" width="5%"> </td>
<td class="thead" width="70%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="15%"><center>$vbphrase[last_post]</center></td>
<td class="thead" width="5%"><center>$vbphrase[threads]</center></td>
<td class="thead" width="5%"><center>$vbphrase[posts]</center></td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tr>
$forumbits
<tr>
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><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]" rel="nofollow">$vbphrase[view_forum_leaders]</a></if>
</strong></div></td>
</tr>
</tbody>
</table>
$forumhome_markread_script
<!-- /main -->
<br />
<br />
<!-- what's going on box -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
</tr>
</thead>
<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]" rel="nofollow">$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]" rel="nofollow"><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>
<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>
</div>
</td>
</tr>
</tbody>
<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>
<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>
</table>
<br />
<!-- end what's going on box -->
<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
<td>
<table cellpadding="2" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
<td class="smallfont"> $vbphrase[forum_contains_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
<td class="smallfont"> $vbphrase[forum_contains_no_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
<td class="smallfont"> $vbphrase[forum_is_closed_for_posting]</td>
</tr>
</table>
</td>
<if condition="!$show['guest']">
<!-- member logout -->
<td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
<!-- end member logout -->
</if>
</tr>
</table>
<!-- / icons and login code -->
$footer
</body>
</html>
I have the same problem. Anyone with solutions?
Thanks!
Girlspeedo
talenak
05-06-2007, 05:01 AM
Is there a way to install this mod for ONE style and not the other?
This mod wrecks the chestnut style which already puts a space between each category.
And then the member voted in style doesn't put a space. I really want a space, but I don't want to destroy chestnut.
ETA: Nevermind. Found a mod for a template edit. Uninstalled. Nice hack though if not for being unable to restrict it to specific styles.
ShackMaster
05-17-2007, 10:01 PM
OOPS... wrong thread... sorry.
talenak
06-05-2007, 08:31 PM
Yay, I'm using this one now since chestnut is no longer installed on my forum. It works great now that it's the only spacer :)
dope15gd
06-05-2007, 10:47 PM
Installed this today. Working perfectly.
thanks
therogueforums
06-06-2007, 07:04 AM
Very nice hack! It's very subtle, but makes a nice change in the appearance. Again, nice work!
FarukErsin
06-08-2007, 05:19 PM
Thanks...
713JunctionP
06-09-2007, 12:51 AM
awesome hack! :up:
NoDRaC
07-09-2007, 06:04 PM
i want to apply only one theme how can i do it?
websiteking532
07-22-2007, 04:17 AM
wen i installed tat mod i got it as
http://upload.bz/files/wmj3ydrdhfmjkzlqynmo.jpg
i want to make it as
http://upload.bz/files/di5yym5wotmeizxqwny2.jpg
wat i mean is , how can i remove the following
http://upload.bz/files/mke1yzgtzyz2dfmmyom3.jpg
Hornstar
07-29-2007, 11:34 AM
I will install this when it can be applied to certain styles only
:/ otherwise it will destroy the look of some of my styles.
yoyoyoyo
09-11-2007, 10:24 AM
it's nice to have this as a plugin instead of all of those pesky template edits - thanks!
Cooter
09-11-2007, 02:34 PM
This is really nice!
applyimage
10-03-2007, 03:05 PM
Very nice!
Just a quick related question. If you take a look at my forum home I have the hack that displays the welcome messages and this mod istn't applying a nice little space underneath that. How would I do that? www.applyimage.co.uk/forum help really appreciated.
m2006
10-11-2007, 03:49 PM
istall working good thank you very much
m2006
10-20-2007, 01:09 PM
I must move come to beside below
https://vborg.vbsupport.ru/
view test picture
dvbusuario
11-02-2007, 01:43 AM
Thanks
racechick20
12-16-2007, 04:30 PM
Great hack, too late for me though. Lol I did it the template edit way following these instructions (http://www.vbulletin.com/forum/showthread.php?t=224461) over at vBulletin.com. And to those interested - yes you can insert banners or images between the forums. We have done this on Signoholics (even learned how to make them stretch :)) by following these instructions (http://www.vbulletin.com/forum/showthread.php?t=169892), again over at vBulletin.com.
xcingix
12-24-2007, 06:44 AM
Is there an update for 3.7.0.
They tell me that one of the plugins on my forum is preventing "Rebuild Custom Avatars" from working and this is one of the only 3 mods I have installed.
karabaja3
01-10-2008, 05:09 PM
Hi!
Is there possibility to separate only first category from the rest?
Alfa1
01-12-2008, 02:27 AM
This works like a charm on vb 3.7. Many thanks RS_Jelle!
jambo_1969
01-14-2008, 03:26 PM
Awesome !
corvette557@eim
01-18-2008, 10:04 AM
Amazing man nice one
ohsuria
01-23-2008, 11:51 AM
I just installed this product and have problem with sub categories.
please refer to the image.
Bali Hotels and Puncak Hotels should be the child from Hotels Lounge category.
but it displayed splitted to 2 categories.
is there way to solve this problem?
Kindly advise.
Thank you.
Suria OH.
MV Blackie
02-08-2008, 06:06 PM
goe bezig dude ;)
piloto-43
02-12-2008, 08:58 PM
@everyone: I'm planning a fix for the alignment problem, but it will require template edits ofcourse.
... any solution.. pls
mertron
02-14-2008, 07:52 AM
Can i display one or multiple forum banners per seperate forum. :(
grubby2day
02-28-2008, 02:49 PM
I've installed this but nothing changes at all. What could I be doing wrong? My version is 3.6.8 p2. Thanks!!
Glynn58
02-28-2008, 03:34 PM
just installed on same version & its perfect :up:
Leo Brazil
03-03-2008, 02:15 PM
I've just installed it and worked great.
But I have some sob-forums working as categories inside a forum and the mod is separating all those sub-forums as individual ones. I know this is possible but I just can't figure out how to keep them together just like original.
Can someone give me a tip for ?
Tks.
grubby2day
03-04-2008, 03:00 AM
figured out the problem...i was not using the "act as forum=no" option in the forum manager. Once I did that the effects were implemented immediately ...but I'm not sure if I am crazy about the "forum" heading over each category. plan to play around with it a little more.
NeuroLancer
03-11-2008, 08:05 AM
I was about to edit my template for 3.7 beta 6, then I thought I will install this and see what happens. Works great :D
surfjunkey
03-17-2008, 04:39 PM
this is a great hack and thanks for it, it works flawlessly on my 3.6.8 board. but i do have a modification question for you, at the top of each new seperated forum, where it says forum - the "heading", how can i change this word 'forum' for something else?
Anybody? its driving me nuts trying to do it lol
yinyang
03-17-2008, 10:28 PM
I was about to edit my template for 3.7 beta 6, then I thought I will install this and see what happens. Works great :D
Confirmed!! Working great on vb3.7 here also!
doozy
03-24-2008, 09:30 PM
I have this installed and have got the spacing sorted, I've also managed to ge the forum title above the 'forum - last post - etc' row, and here's where the problem comes in: my first category title isn't showing correctely, it's showing whatever the title of the bottom forum is.
IE atm the title of my first category should be 'Welcome' but it's showing up as 'Feedback'. Feedback is the forum at the very bottom of the page in the final category, whatever I change the bottom forum to is what is displayed as the title of the first category.
Needless to say I'm confused! Can anyone help?
It happened after I altered the FORUMHOME template, if it helps this is what it looks like now...
$stylevar[htmldoctype]
<html 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 class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
<phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
</table>
<br />
<!-- / guest welcome message -->
</if>
<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
<tr>
<td class="thead" width="5%"> </td>
<td class="thead" width="70%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="15%"><center>$vbphrase[last_post]</center></td>
<td class="thead" width="5%"><center>$vbphrase[threads]</center></td>
<td class="thead" width="5%"><center>$vbphrase[posts]</center></td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="0%">$vbphrase[moderator]</td>
</if>
</tr>
$forumbits
<tr>
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><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]" rel="nofollow">$vbphrase[view_forum_leaders]</a></if>
</strong></div></td>
</tr>
</tbody>
</table>
$forumhome_markread_script
<!-- /main -->
<br />
<br />
<!-- what's going on box -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
</tr>
</thead>
<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]" rel="nofollow">$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]" rel="nofollow"><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>
<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>
</div>
</td>
</tr>
</tbody>
<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>
<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>
</table>
<br />
<!-- end what's going on box -->
<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
<td>
<table cellpadding="2" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
<td class="smallfont"> $vbphrase[forum_contains_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
<td class="smallfont"> $vbphrase[forum_contains_no_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
<td class="smallfont"> $vbphrase[forum_is_closed_for_posting]</td>
</tr>
</table>
</td>
<if condition="!$show['guest']">
<!-- member logout -->
<td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
<!-- end member logout -->
</if>
</tr>
</table>
<!-- / icons and login code -->
$footer
</body>
</html>
I am having this problem as well. For now I just hard coded a generic title, but it would be nice if it actually called the first forum title correctly.
KURTZ
03-26-2008, 12:10 PM
I must move come to beside below
http://baanmaha.hopto.org/upload/file1/speret.gif
view test picture
how? thx
Ok this works good on 3.7 but is there away to seperate it from the bottom of the statics?
aamirkhj
04-18-2008, 04:19 AM
Gr8 Hack:up: It solves my total skin layout in less then a minute:)
arena
04-30-2008, 09:53 PM
thankyou vb 3.7.0 working
srikanthbr
05-03-2008, 08:37 AM
https://vborg.vbsupport.ru/
need 1st row down below 2nd row
RS_Jelle
05-03-2008, 08:52 AM
need 1st row down below 2nd row
That's not possible with this mod. This mod is about separating forum categories without template edits and this would require them.
srikanthbr
05-03-2008, 08:58 AM
oh ok
if any one can help me with this plzzzz
https://vborg.vbsupport.ru/
Installed, thanks...
What template in must I look for???
I'm sorry, translated text online.
salu2
ABDALWAHID
05-22-2008, 07:57 AM
Hello,
I have a problem
If install this plugin, just like your demo pictures, last post is not share the same size. Can you this error corrected?
Greeting
https://vborg.vbsupport.ru/attachment.php?attachmentid=51988&d=1155336082
KURTZ
05-22-2008, 09:33 AM
In these templates:
- FORUMDISPLAY
- FORUMHOME
- forumhome_seperate_forumcats
search:
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$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>
replace
<tr align="center">
<td class="thead" width="5%"> </td>
<td class="thead" width="55%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="20%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="10%">$vbphrase[moderator]</td>
</if>
</tr>
ABDALWAHID
05-22-2008, 10:52 AM
hi KURTZ ,
this is not ok.
I have v 3.7.0
Raptor
06-20-2008, 01:23 AM
then in 3.7.1 search for
<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>
however im still getting the column mis-alignment problem.
Raptor
06-21-2008, 11:23 AM
i got things working - not by using this plugin tho.
Anyway my problem is that the template forumhome_seperate_forumcats will not delete - it was added to the master style with no uninstall code !!
So how to remove - thanks
RS_Jelle
06-21-2008, 02:01 PM
however im still getting the column mis-alignment problem.
That's a limitation that can't be solved without template edits. And this mod is about separating them without those edits ...
i got things working - not by using this plugin tho.
Anyway my problem is that the template forumhome_seperate_forumcats will not delete - it was added to the master style with no uninstall code !!
So how to remove - thanks
Just remove the product and it will be auto-deleted :)
mauriceo
07-29-2008, 07:28 PM
Great plugin! To make the functionality even better on my forum i would like to switch the 'topic-threads-replies balk' with the 'catagory balk' just like as on this forum. Mayby if it is possible it is a nice idea to add to the plugin.
MDK-Indy
07-31-2008, 01:47 AM
Salü,
how i can disable this hack for a specific Style?
If a Style have Seperate Forum Categories integrated the Hack kill the Style layout.
greeting Indy
Does this work with 3.7.3?
ChaosBurnt
10-06-2008, 06:28 PM
Does this work with 3.7.3?
Yup, if you include KURTZ' template edit a few posts up it works perfectly in 3.7.3 PL1
desperado2
10-08-2008, 08:47 PM
subforum (forumdisplay) problem
http://img513.imageshack.us/img513/6710/subforumzw8.jpg
vithorius
10-24-2008, 07:25 AM
Been looking for this Mod for some time...!
Ok, now I see why I did not found it before...! The NAME has got an orthographic ERROR! :confused: :mad:
:eek: It should be "Separate Forum Categories" and NOT "Seperate Forum Categories"... :D
Ok... Installed! :rolleyes: :up:
sdavis2702
11-30-2008, 02:41 AM
Hey everyone if you're having issues with the with of the columns from one block to the next, just adjust those percentages in the FORUMHOME, FORUMDISPLAY, forumhome_seperate_forumcats templates that KURTZ mentioned towards the top of this page. I changed my "Last_Post", "Posts", and "Threads" percentages a bit. It took a few minutes because it's all trial and error but hey... you own a website.
killa seven
12-16-2008, 09:15 AM
haha, didn't work for me man =[
Collectors
12-23-2008, 03:57 PM
The 'Last Post' column can be smaller than normal if the thread titles of the category forums are all small (you can only fix this with a template edit). Have a look at the attached screenshot to see this limitation.
I have this problem, how can I fix this?
In these templates:
- FORUMDISPLAY
- FORUMHOME
- forumhome_seperate_forumcats
search:
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$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>
replace
<tr align="center">
<td class="thead" width="5%"> </td>
<td class="thead" width="55%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="20%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="10%">$vbphrase[moderator]</td>
</if>
</tr>
After installing this mod and editing the templates I still have this problem. It's a standard style.
Collectors
12-24-2008, 08:47 AM
I have this problem, how can I fix this?
After installing this mod and editing the templates I still have this problem. It's a standard style.
Solved. I deleted my Thread Prefixes for that subforum, now the columns are all the same.
sdavis2702
12-27-2008, 01:53 AM
haha, didn't work for me man =[
You sure you adjusted everything correctly?
Try this... after copying the section we're talking about in your FORUMHOME, FORUMDISPLAY, and forumhome_seperate_forumcats templates and saving them somewhere else just to be safe, replace them with this...
<thead>
<tr align="center">
<td class="thead" width="7%"> </td>
<td class="thead" width="45%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="32%">$vbphrase[last_post]</td>
<td class="thead" width="7%">$vbphrase[threads]</td>
<td class="thead" width="9%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead>
If you see absolutely no change, something is wrong.
killa seven
12-27-2008, 03:50 PM
Thanks man, i ended up doing it myself though. :)
We are running 3.7 anyhow, but a lot of 3.6 mods work on it, just this one didn't happen to.
Sean James
12-29-2008, 02:59 AM
So does this work with the latest version of vbulletin 3.7.4?
UKBusinessLive
01-02-2009, 01:25 AM
Works fine with latest version, I'm using 3.7.4. had problems with wonky forums and nothing lining up, Played around with all these template edits, got no where, The answer was staring me right in the face
Goto> vbulletin options> Forum Listings Display Options> scroll down> find> Last Thread Title Maximum Displayed Characters > set to 20 and save...
Now works a treat, thought i'd share it here
take care
:D
Chrakker
01-06-2009, 02:56 PM
Thanks very much :)
Works for 3.7.5 from Scratch with this fix :)
Nice work :)
Makred as installed ^__^
woodysfj40
01-08-2009, 01:03 PM
Works fine with latest version, I'm using 3.7.4. had problems with wonky forums and nothing lining up, Played around with all these template edits, got no where, The answer was staring me right in the face
Goto> vbulletin options> Forum Listings Display Options> scroll down> find> Last Thread Title Maximum Displayed Characters > set to 20 and save...
works on 3.8.0 as well
shervin_dvb
01-10-2009, 01:41 PM
Hi Dear
I Have Like this Problem And On Work After Edit code ?
tell Me about Remove this problem
That's also a limitation, then you have to do a template edit:
First install the product
Open forumhome_forumbit_level1_nopost and remove the following code:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Open forumhome_seperate_forumcats and add the following code at the end of the template:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Welshy2008
02-04-2009, 01:40 PM
In these templates:
- FORUMDISPLAY
- FORUMHOME
- forumhome_seperate_forumcats
search:
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$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>
replace
<tr align="center">
<td class="thead" width="5%"> </td>
<td class="thead" width="55%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="20%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="10%">$vbphrase[moderator]</td>
</if>
</tr>
I have tried this, but they are still all squashed to the right. The only one that I couldn't do is: forumhome_seperate_forumcats I don't have one of those unser my FORUMHOME or anywhere else that I can see.
Can you help me on this please?
Solved. I deleted my Thread Prefixes for that subforum, now the columns are all the same.
Would you or some else be kind enough as to explain what you mean / have done in Layman's terms please? I am new to this. :)
Many Thanks.
Welshy2008
02-04-2009, 01:43 PM
** EDIT **
In fact, I don't have the "Forum, Last Post, Threads or Posts (or the bar in which they reside) at the top of my main forum either. So that would explain why I can't find the "forumhome_seperate_forumcats", Would some be kind enough as to guide me through how I would add this back to my forum Please?
I would be very grateful.
UKDarkstar
03-02-2009, 11:42 AM
Working on 3.8.1
Thanks :up:
powersilie
03-03-2009, 12:57 PM
That's not possible with this mod. This mod is about separating forum categories without template edits and this would require them.
Well, ok, but how did You manage it to change this columns?
On this pic You can see the "Forum, Last Post, Threads or Posts"-bar UNDER the name of the forum.
https://vborg.vbsupport.ru/external/2009/03/126.jpg
greez
Karin
-=Leb=-
03-26-2009, 09:49 PM
I think this hack works on all vb versions. Thx for the great job :)
Black Tiger
04-24-2009, 11:39 PM
This still seems to work in 3.8.2
But how do I fix these alignments?
RS_Jelle
04-26-2009, 01:45 PM
This still seems to work in 3.8.2
But how do I fix these alignments?
That's part of the limitations of doing this with a simple plugin :)
This mod is about doing it without template edits. There are template modifications to do this in a better way.
Black Tiger
04-26-2009, 10:54 PM
Can you point me (if necessary via pm) to the right direction? Because I tried several template edits mods on this forum, but either the first forum is not aligning, or otherwise the "last thread text" get's under 20-25 signs, which I don't want.:)
hauli
09-12-2009, 08:31 PM
Works wonderfull with vBulletin® Version 3.8.4 (Deutsch)
Skydiver10
11-07-2009, 12:12 AM
Hey thanks...I also found the code in all three templates and replaced the code like you said from your post on page 1. This re-aligned all the forums under "Last Post"....Thanks again for a great hack! :up:
Skydiver10
11-10-2009, 05:20 PM
Hi there,
Is there a way that this mod can make more space between the categories bigger?
I just want to increase the gap a little bit more between the categories. Any help would be greatly appreciated.
Can anyone point me in the right direction or if this is even possible?...thanks!
RS_Jelle
11-11-2009, 07:35 PM
Hi there,
Is there a way that this mod can make more space between the categories bigger?
I just want to increase the gap a little bit more between the categories. Any help would be greatly appreciated.
Can anyone point me in the right direction or if this is even possible?...thanks!
Open the product XML, find <br /> and replace it with <br /><br /> or even more :)
Skydiver10
11-12-2009, 09:59 PM
I searched the XML file (product-seperate-forumcats.xml) and I can't find "<br />" anywhere.
Do you know what line it is on out of the 63 lines?
Skydiver10
11-12-2009, 10:05 PM
Never mind....I found it in the "forumhome_seperate_forumcats" template...thanks!
Sworm
03-15-2011, 07:39 PM
I have tryed "The Categories Separator" , but this is the best one ^^ . Work perfect on 3.8.7 too :) .... there's any suggest that the author of this great mod wont to do for all 3.8.7 users?
Sworm
04-17-2011, 11:21 AM
That's also a limitation, then you have to do a template edit:
First install the product
Open forumhome_forumbit_level1_nopost and remove the following code:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Open forumhome_seperate_forumcats and add the following code at the end of the template:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<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']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
Hi , that code is changed in 3.8.7, can you please help me to do this ? The actual code is (there's a opened <if> in the final part....):
<tbody> </if> <tr> <td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<if condition="$childforumbits"> <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> </if>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a> <if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if> </td> </tr>
<if condition="!$show['collapsable_forums']"> </tbody>
Abominus
10-14-2012, 12:51 PM
Is it possible to use it with 4.2?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.