Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Forums arranged in columns on forumhome Details »»
Forums arranged in columns on forumhome
Version: 1.00, by Xenon Xenon is offline
Developer Last Online: Oct 2023 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 07-25-2002 Last Update: Never Installs: 62
 
No support by the author.

As requested several times, this hack allows you to arrange forums on forumhome in xx columns instead of just one per row as it now.

You have to set up a new category(s). All direct subforums to this category(s) will be arranged in columns.
It can be very usefull if you have very much Subforums, so you haven't to scroll as much as you have before

Newest Version: 1.21
Known Bugs: none

Screenshots below.

Design can be changed in templates..

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #122  
Old 10-30-2002, 05:21 PM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Lol im a nuiscance i know but i still am desperate to get my forum columns looking like here at:

http://www.wildvibes.net/forum

Regards

- miSt
Reply With Quote
  #123  
Old 10-30-2002, 07:38 PM
Mr_P Mr_P is offline
 
Join Date: Jan 2002
Location: Uk.
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok i suzzed my prob out i added instead of replacing inside index.php so was down to User Error (cause of to many probs on vbull i bet


In index.php (root) find this :


PHP Code:
find:
eval(
"\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$tempext")."\";");

if (
$depth<$forumhomedepth) {
$forumbits. =makeforumbit($forum['forumid'],$depth+1,$forumper
ms
);

Now REPLACE this in index.php to this

PHP Code:
if(strstr(" ".$columnparent." "" ".$forum['parentid']." ")) {
if(
$colsdone!=1) {
$colsdone=1;
$colcounter=1;
eval(
"\$forumbits .= \"".gettemplate("colforumtableheader")."\";");
} else {
$colcounter++;
if(
$colcounter%($forumcols+1)==0) {
$forumbits .= "</tr><tr>";
$colcounter=1;
}
}
$width="width=".(100/$forumcols)."%"//take out if you want variable column widths
eval("\$forumbits .= \"".gettemplate("colforumbit")."\";");


} else {
if(
$colsdone==1) {
$colsdone=0;
$colcounter=0;
eval(
"\$forumbits .= \"".gettemplate("colforumtablefooter")."\";");
}

// eval("\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$tempext")."\";");
if(strstr(" ".$columnparent." "" ".$forum['forumid']." ")) {
eval(
"\$forumbits .= \"".gettemplate("forumhome_colbit_level$depth$tempext")."\";");
} else {
eval(
"\$forumbits .= \"".gettemplate("forumhome_forumbit_level$depth$tempext")."\";");
}

}

if (
$depth<$forumhomedepth) {
// $forumbits. =makeforumbit($forum['forumid'],$depth+1,$forumper
ms);
}


if (
$depth<$forumhomedepth) {
$forumbits. =makeforumbit($forum['forumid'],$depth+1,$forumper
ms
);
}
// END if can view
// END while ( list($key2,$forum)=each($val1) ) {
// END while ( list($key1,$val1)=each($iforumcache["$forumid"]) ) { 
and now it works fine the bars have totally disappeared for me.

So if it dont work just go over tha hack again.If you installed the one that adds a GFX to the section recheck this as well.
Reply With Quote
  #124  
Old 10-30-2002, 07:42 PM
Mr_P Mr_P is offline
 
Join Date: Jan 2002
Location: Uk.
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok i have re-add the install file for this hack as i have made a few template changes and it works Deffo.

just go over it and see whats different and tell me if it works for u.
Reply With Quote
  #125  
Old 10-31-2002, 12:36 AM
Buddha Buddha is offline
 
Join Date: Jan 2002
Posts: 314
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

excellent work guys.
thank you very much. works like a charm, and allows me a lot of freedom with the templates to modify as i need to.

thanks!
Reply With Quote
  #126  
Old 10-31-2002, 04:41 AM
Mr_P Mr_P is offline
 
Join Date: Jan 2002
Location: Uk.
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Buddha
excellent work guys.
thank you very much. works like a charm, and allows me a lot of freedom with the templates to modify as i need to.

thanks!
Nps

Consider yourself lucky first time one of my fixes has work
Reply With Quote
  #127  
Old 10-31-2002, 10:05 AM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanx, have to take a closer look at it.
Reply With Quote
  #128  
Old 11-01-2002, 07:27 PM
N9ne N9ne is offline
 
Join Date: Feb 2002
Posts: 1,495
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Xenon: Is there a quick fix for this:

I have this template mod installed: http://www.vbulletintemplates.com/mo...ghlight=header

It is the famous "add header cells under categories".

Now because of this it shows under the category for forums arranged in columns! I want to remove it from JUST that category, ie. all categories arranged in columns.

For Mr_P's code, do I just uninstall your hack [in index.php] and apply what he has done? And all is ok? Or do I actually need to create the extra templates he calls in his code?
Reply With Quote
  #129  
Old 11-01-2002, 07:33 PM
Mr_P Mr_P is offline
 
Join Date: Jan 2002
Location: Uk.
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm i dont call in no extra templates m8,all the orginal coding is done by Xenon

all i did was edit some of them to suit me and get the effect i wanted.

You dont need to uninstall the hack

just look at instructions in the zip file its the same as Xenons but i have already added the extra bits needed so check them against the code you have and add as needed.

Only takes a few mins to do the full hack anyway.

Quote:
For Mr_P's code, do I just uninstall your hack [in index.php] and apply what he has done? And all is ok? Or do I actually need to create the extra templates he calls in his code?
Change the code in index.php

and then in the txt file u notice the templates you have to make have a bit differetn code in them.Just cut and paste over the template you already have.
Reply With Quote
  #130  
Old 11-01-2002, 08:02 PM
N9ne N9ne is offline
 
Join Date: Feb 2002
Posts: 1,495
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I can't cut and paste them because you have hardcoded colours, use a tbody tag, and have hardcoded widths
Reply With Quote
  #131  
Old 11-01-2002, 10:20 PM
N9ne N9ne is offline
 
Join Date: Feb 2002
Posts: 1,495
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bump.
Reply With Quote
  #132  
Old 11-02-2002, 03:54 AM
Mr_P Mr_P is offline
 
Join Date: Jan 2002
Location: Uk.
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Edit the code to suit your forums m8
Reply With Quote
  #133  
Old 11-02-2002, 08:08 AM
N9ne N9ne is offline
 
Join Date: Feb 2002
Posts: 1,495
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is it possible for you to supply me the variables? I'm not quite sure what is what to be honest, and I say this because I like to keep the whole vB structure in tact, I'm a hater of hard coding

I'll see what I can do though, I might post up templates w/o the hard coding if I can
Reply With Quote
  #134  
Old 11-02-2002, 08:33 AM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK i fixed this for you N9ne..

This is my current templates:

colforumbit:

PHP Code:
    <td bgcolor="{secondaltcolor}" valign="top" $width align="left">
          <
img src="{imagesfolder}/$forum[onoff].gif" border="0" alt=""
          <
a href="forumdisplay.php?s=$session[sessionhash]&forumid=$forum[forumid]"><normalfont><b>$forum[title]</b></normalfont></a>
<
br>
<
smallfont>$forum[lastpostinfo]</smallfont>
    </
td
colforumtablefooter:

PHP Code:
</table>
<
table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" {tableinnerextrawidth="100%"
colforumtableheader:

PHP Code:
</table>
<
table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" {tableinnerextrawidth="100%"
Regards

- miSt

___________

Any news on gettin this hack to look at wildvibes.net and yaxay.com/yack?
Reply With Quote
  #135  
Old 11-02-2002, 09:15 AM
N9ne N9ne is offline
 
Join Date: Feb 2002
Posts: 1,495
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Erm, doing what Mr_P and mist said, it also removed the category name! The whole category bar just goes, and it's just the forums, having the category bar would be good
Reply With Quote
  #136  
Old 11-02-2002, 09:18 AM
N9ne N9ne is offline
 
Join Date: Feb 2002
Posts: 1,495
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Also, this line in your code Mr_P:

eval("\$forumbits .= \"".gettemplate("forumhome_colbit_level$depth$temp ext")."\";");

Is getting the template forumhome_colbit_level and whether it's level 1 or 2, and nopost or post...you said it doesn't call any extra templates?
Reply With Quote
  #137  
Old 11-02-2002, 09:21 AM
N9ne N9ne is offline
 
Join Date: Feb 2002
Posts: 1,495
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok nevermind nevermind, I've figured it all out now, some templates do have to be created...just create forumhome_colbit_level1_nopost and the same for level2, and use the same contents as the forumhome_forumbit templates, but don't add in the header cells
Reply With Quote
  #138  
Old 11-02-2002, 05:33 PM
squawell's Avatar
squawell squawell is offline
 
Join Date: Oct 2001
Posts: 681
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Mist
Lol im a nuiscance i know but i still am desperate to get my forum columns looking like here at:

http://www.wildvibes.net/forum

Regards

- miSt
about this hack....

Mist can u tell me how to do can look like that website??



Thankz...
Reply With Quote
  #139  
Old 11-02-2002, 06:20 PM
Mr_P Mr_P is offline
 
Join Date: Jan 2002
Location: Uk.
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by N9ne
Also, this line in your code Mr_P:

eval("\$forumbits .= \"".gettemplate("forumhome_colbit_level$depth$temp ext")."\";");

Is getting the template forumhome_colbit_level and whether it's level 1 or 2, and nopost or post...you said it doesn't call any extra templates?
it calls in the templates that are needed and they are the same ones as the orginal hack.

I posted code here only because a few wanted the bars removing and i gather you dont.The code is the zip is to completely remove the bars and the category name as these i did`nt want.
Reply With Quote
  #140  
Old 11-02-2002, 08:01 PM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@ squawell - im trying to get it to look like that myself lol..

- miSt
Reply With Quote
  #141  
Old 11-02-2002, 08:31 PM
mikey8270 mikey8270 is offline
 
Join Date: Oct 2001
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

what part of that are u trying to recreate? i managed to get something like that on my test board.
Reply With Quote
  #142  
Old 11-02-2002, 08:36 PM
Mr_P Mr_P is offline
 
Join Date: Jan 2002
Location: Uk.
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok i must be missing some thing here

Lesanes site is one cracker of a coded site and fair dues to him.
But what are u after ?

do u want the four sections with the GFX in ?

or is it you want the bar to show as well as the GFX sections.

I fyou want the GFX then load the addon to this hack which allows you to specify a logo for each section.
You dont specify one for any other section except for the one u gonna be using for the Columns.

Then u take the code when its done and mess with it in Dreamweaver and tweak it to its to your liking.
Reply With Quote
  #143  
Old 11-02-2002, 08:38 PM
Mr_P Mr_P is offline
 
Join Date: Jan 2002
Location: Uk.
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Infact tell me what u want and ill do a step by step guide to doing it if possible ?
Reply With Quote
  #144  
Old 11-03-2002, 11:16 AM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well i have the category icons hack installed so the images for the forums will work fine..

I need to get my forum columsn working like they are at Lesane's site..

With the category images (i have that working so the variable to use to insert the image is: $ficonimg)

So basically i need the forum columns looking like they do at Lesane's site

Regards

- miSt
Reply With Quote
  #145  
Old 11-03-2002, 08:01 PM
Mr_P Mr_P is offline
 
Join Date: Jan 2002
Location: Uk.
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Mist
Well i have the category icons hack installed so the images for the forums will work fine..

I need to get my forum columsn working like they are at Lesane's site..

With the category images (i have that working so the variable to use to insert the image is: $ficonimg)

So basically i need the forum columns looking like they do at Lesane's site

Regards

- miSt
They do appear like that but you got to remember Lesane Has done extra coding on his to get that effect.Must admit i like his myself.


Minifreunde,would`nt you be better off posting the change instead of asking for pms.This way new people to this post get to see all the changes made.
Reply With Quote
  #146  
Old 11-07-2002, 12:55 AM
slideboxer's Avatar
slideboxer slideboxer is offline
 
Join Date: Dec 2001
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Mr_P


it calls in the templates that are needed and they are the same ones as the orginal hack.

I posted code here only because a few wanted the bars removing and i gather you dont.The code is the zip is to completely remove the bars and the category name as these i did`nt want.
How could I make it list the category name if I want it to?
Reply With Quote
  #147  
Old 11-07-2002, 07:01 AM
Kars10's Avatar
Kars10 Kars10 is offline
 
Join Date: Jun 2002
Location: Germany/Franken
Posts: 748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

... here is a Screenshot of my testboard installed with the modification!
Reply With Quote
  #148  
Old 11-11-2002, 03:48 AM
Sadie Frost's Avatar
Sadie Frost Sadie Frost is offline
 
Join Date: Dec 2001
Location: Pittsburgh
Posts: 307
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

screenshot
Reply With Quote
  #149  
Old 11-11-2002, 03:48 AM
Sadie Frost's Avatar
Sadie Frost Sadie Frost is offline
 
Join Date: Dec 2001
Location: Pittsburgh
Posts: 307
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay, I have got this working pretty much I think. I will try and post what I did, but since it involved playing around with it some, I might need to revise if some of you try it. I'm not a coder, so it might need cleaned up. I don't think anything here is new - I just started trying what other people were saying. Oh, this is for removing the Forums, Posts etc. stuff but still having the category title.

1) First I installed the original hack.

2) Then I downloaded Mr P's zip file on page 9 of this thread. I substituted his code for the second change to the index.php file.

3) I played around with my templates. Zip is attached, but I think I mostly cleared them out lol. There are very probably some extra nested tables in there. I also added two templates which I think someone mentioned doing but I couldn't find the post again to say exactly who so I'm sorry. I basically took the forumhome_forumbit_level1_nopost and level2_nopost and renamed them, then took out all the code for the Forum, Posts, Threads etc. I renamed them forumhome_nohead_level1_nopost and level2_nopost

4) Then I went back into Mr. P's code in index.php and in:

Code:
if(strstr(" ".$columnparent." ", " ".$forum['forumid']." ")) {
  eval("\$forumbits .= \"".gettemplate("forumhome_colbit_level$depth$tempext")."\";");
I substituted 'nohead' for 'colbit'

Two things: I have the template mods for seperating the categories on the forumhome installed, and I seem to have an extra line below my category header. Probably because I have that template mod that puts a decorative line there. So if anyone can figure out how to remove that that would be good.
Reply With Quote
  #150  
Old 11-15-2002, 04:43 PM
Jacko's Avatar
Jacko Jacko is offline
 
Join Date: Mar 2002
Location: UK
Posts: 173
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i get this image when editing my column header template..

Sadie Frost is it possible for you to show me your column head template????

i would be most gratefull..


i am trying to get the category title to show but it shows me the first forum name?? why??

here is my screenie..
Reply With Quote
  #151  
Old 11-15-2002, 07:47 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Jacko please change your sig, your image is over the limits of 300 pixels wide and 20k bytes large.

also you are just allowed to have an image OR text in it, not both
Reply With Quote
  #152  
Old 11-15-2002, 07:50 PM
Jacko's Avatar
Jacko Jacko is offline
 
Join Date: Mar 2002
Location: UK
Posts: 173
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry didnt know.

can anyone sort out my problem please??
Reply With Quote
  #153  
Old 12-14-2002, 11:02 PM
Sadie Frost's Avatar
Sadie Frost Sadie Frost is offline
 
Join Date: Dec 2001
Location: Pittsburgh
Posts: 307
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm sorry, I don't understand the problem or I would try and help
Reply With Quote
  #154  
Old 12-15-2002, 01:08 AM
N9ne N9ne is offline
 
Join Date: Feb 2002
Posts: 1,495
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Xenon: I just realised something, I don't think you added the extra templates to the templatesused variable .
Reply With Quote
  #155  
Old 12-15-2002, 11:51 AM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

didn't i?

yes, most of the time i forgott about it, when posting a hack
Reply With Quote
  #156  
Old 12-20-2002, 07:22 PM
omegauk's Avatar
omegauk omegauk is offline
 
Join Date: Apr 2002
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone know how to remove the strip underneath the category? the one thats says threads, posts etc.....?
Reply With Quote
  #157  
Old 12-20-2002, 07:26 PM
omegauk's Avatar
omegauk omegauk is offline
 
Join Date: Apr 2002
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This one here, the part marked in red:
Reply With Quote
  #158  
Old 12-20-2002, 08:01 PM
omegauk's Avatar
omegauk omegauk is offline
 
Join Date: Apr 2002
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok, I just managed to solve it.
Reply With Quote
  #159  
Old 12-28-2002, 12:55 PM
influence influence is offline
 
Join Date: Jan 2002
Location: inside a bullet
Posts: 207
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

did anyone PM Minifreunde and get the one he did similar to lesane version? I dont know if he still around because I PM'ed him for it.
Reply With Quote
  #160  
Old 01-03-2003, 07:30 AM
Tes One Tes One is offline
 
Join Date: Apr 2002
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, maybe I'm just missing something but I believe I have this hack installed correctly on a 2.2.9 board and it is simply not showing up for me. I did the queries, added the templates and made the mods to the index.php and I'm coming up with nothing.

Can someone please post a screenshot of (Forum Home Options)how you chose the parent column and then it's sub forums? I believe this is the area that I am getting stuck on.

Thanks

Tes
Reply With Quote
  #161  
Old 01-03-2003, 07:36 AM
omegauk's Avatar
omegauk omegauk is offline
 
Join Date: Apr 2002
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You choose the category ID and then specify how many columns you want
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:14 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08091 seconds
  • Memory Usage 2,649KB
  • Queries Executed 55 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (5)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (41)post_thanks_box
  • (41)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (41)post_thanks_postbit_info
  • (40)postbit
  • (41)postbit_onlinestatus
  • (41)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete