vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   First post on every page of thread. (https://vborg.vbsupport.ru/showthread.php?t=93706)

Moya 11-12-2005 05:02 PM

Here is the template and the icon on the left. Just copy and paste the text into the firstpost template and upload firstpost.gif to images directory

Madmax4321 11-13-2005 07:10 PM

nice work on the hack ;)

how hard would it be to pull other info into the postbit from a custom table im asking because would like to make something similar to the hack system here as the system i made for 3.0.7 doesnt work in the same way with the new code.

Thanx.

vBintense 11-13-2005 07:55 PM

I would have to see the table to answer how to.
Quote:

Originally Posted by Madmax4321
how hard would it be to pull other info into the postbit from a custom table im asking because would like to make something similar to the hack system here as the system i made for 3.0.7 doesnt work in the same way with the new code.


Madmax4321 11-13-2005 09:31 PM

this is my table structure if its any help.

Code:


CREATE TABLE `hacks` (
  `hackid` int(10) NOT NULL auto_increment,
  `threadid` int(10) unsigned NOT NULL default '0',
  `firstpostid` int(10) unsigned NOT NULL default '0',
  `forumsid` int(10) NOT NULL default '0',
  `userid` int(10) NOT NULL default '0',
  `username` varchar(50) NOT NULL default '',
  `dateline` int(10) NOT NULL default '0',
  `catid` int(4) NOT NULL default '0',
  `version_vb` varchar(10) NOT NULL default '',
  `version_hack` varchar(10) NOT NULL default '',
  `title` varchar(100) NOT NULL default '',
  `description` mediumtext NOT NULL,
  `installation` varchar(4) NOT NULL default '',
  `queries` varchar(4) NOT NULL default '',
  `templates_news` varchar(4) NOT NULL default '',
  `templates_mod` varchar(4) NOT NULL default '',
  `files_add` varchar(4) NOT NULL default '',
  `files_mod` varchar(4) NOT NULL default '',
  `phrases` varchar(4) NOT NULL default '',
  `attachmentid` varchar(50) NOT NULL default '',
  `nb_install` int(10) NOT NULL default '0',
  `postuser` varchar(250) NOT NULL default '',
  `postuserid` int(10) NOT NULL default '0',
  `version` varchar(10) NOT NULL default '',
  `installer` varchar(4) NOT NULL default '',
  `installs` int(5) NOT NULL default '0',
  `updated` int(10) NOT NULL default '0',
  `addonid` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`hackid`)
) TYPE=MyISAM;


revlisoft 11-16-2005 02:44 PM

Andreas.. how do I get the original so that it is by default show first post on all forums and then disable each one later on?

vBintense 11-16-2005 03:05 PM

Quote:

Originally Posted by revlisoft
Andreas.. how do I get the original so that it is by default show first post on all forums and then disable each one later on?

Admincp>
Maintenance>
Execute SQL Query>
Code:

UPDATE forum SET showfirstpost = 1
You may have to add your preffix if you use one.

nubian 11-25-2005 05:15 AM

will this work for 3.5.1?

vau7 11-25-2005 05:03 PM

yes, it does. I am running it on 3.5.1

Pvtiste 11-25-2005 05:24 PM

it's really good, I was looking for it :)
Thx for the sharing!

nubian 11-25-2005 05:52 PM

............................

cbr929rrerion 11-26-2005 12:48 AM

any way to change the color or a way to distinguish it as the initial post?

vBintense 11-26-2005 12:53 AM

Quote:

Originally Posted by nubian
...........................

.......................?
Quote:

Originally Posted by cbr929rrerion
any way to change the color or a way to distinguish it as the initial post?

That could be done by editing the template for firstpost.

nubian 11-26-2005 01:11 AM

Quote:

Originally Posted by insane-topics
.......................?


sorry, i thought i was replying to a thread of a similar hack.
so i edited my message.

kafi 12-07-2005 07:44 PM

Quote:

Originally Posted by nubian
sorry, i thought i was replying to a thread of a similar hack.
so i edited my message.

hi,
I am using this hack and I like it .-)

I want to have google adsense after first post. I have found that I may achieve this using this code:
<if condition="!$GLOBALS['FIRSTPOSTID']">
adsense here
</if>

But this is not working for me and it is probably because I use "first post on every..." hack.
Can you advise where to put this code?

Thank you .-)

kafi 12-10-2005 06:59 AM

Quote:

Originally Posted by kafi
hi,
I am using this hack and I like it .-)

I want to have google adsense after first post. I have found that I may achieve this using this code:
<if condition="!$GLOBALS['FIRSTPOSTID']">
adsense here
</if>

But this is not working for me and it is probably because I use "first post on every..." hack.
Can you advise where to put this code?

Thank you .-)

Nobody?

Stephen3 12-20-2005 07:49 PM

any demo ? work for 3.5.2?

DaFire 12-21-2005 08:01 AM

@kafi: just include the code into the new first post template

yayvb 12-23-2005 11:53 PM

I saw this asked a few times in this thread, but I didn't see it answered. I
was just noticing that no one can leave feedback using anyone's first post.
Is there a way around this?

yayvb 12-24-2005 04:51 PM

Ok so what I did was compare my postbit_legacy with my postbit_first.
Since postbit_first is the template for the 1st post, I put a piece of the reputation link code from postbit_legacy to postbit_first.

Can someone tell me if there will be any problems with what I've done?

In postbit_first I found:
Code:

<if condition="$show['reputationlink']"><a href="#" onclick="reputation($post[postid]); return false;"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" /></a></if>
and replaced it with this:
Code:

<if condition="$show['reputationlink']"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" /></a></if>

IrPr 01-05-2006 11:56 PM

workin on 3.5.3?

YoricksRequiem 01-06-2006 04:08 PM

Not entirely, my members reported viewing a thread, then coming back to the thread and the first post being gone.

Not something I need happening, any idea on a fix?

Club3G 01-13-2006 06:30 PM

Working on 3.5.3. Looks great with Legacy. Thanks mate.

It puts the signature directly on top of the edit/quote buttons (you can see it in my screenshot). Adding a quick:

Code:

<br />
Right after:

Code:

$post[signature]
Puts a space inbetween, and makes it a little neater looking IMHO.

[high]* Club3G clicks install.
[/high]

Screenshot since nobody posted one:

http://www.sevenstring.org/chris/firstpost_ss.jpg

And a link to a public forum using it. Pardon the abysmal use of tables in the post, I haven't had time to code it for CSS (though now that it's linked, I might prioritize it, lol)

http://www.sevenstring.org/forum/showthread.php?t=1287

LBSources 01-13-2006 11:35 PM

insane topics i have to commend you for every change, edit, cut, paste, etc made youve also updated the zip file also.. great job and thank you..

/me clicks install

Allan 01-20-2006 06:22 PM

can one choose a specific ID forum ?

vBintense 01-20-2006 06:38 PM

Glad many are getting use from this, I have yet to upgrade my current board to the newest vbulletin due to my new community I have been into.

@Allan, yes it is in the forum options when you edit the forum.

Dreamchaser 01-21-2006 05:57 PM

Thanks Insane! Works charming for me and the one I always wanted :) !

vBintense 01-24-2006 03:33 PM

Added links to additional temples, and changed vb ver. Now that I have tested it on a 3.5.3

topanet 02-03-2006 05:11 AM

This is great hack that i ever looking for :)
many thanks insane..

btw, how can i move postcount xxx into first post anyway??? anyone can help maybe??

thanks,
topz

TurkSipa 02-05-2006 09:15 AM

Add Reputation fixed.
Signature added.

katholic 02-18-2006 11:23 AM

If you look at this thread http://www.insimenator.net/showthread.php?t=478 you will notice the first post is formated differently than the rest of the posts. How can I fix it where they all display the same? I want them to all display as post 2 does.

vBintense 02-22-2006 12:00 PM

Quote:

Originally Posted by katholic
If you look at this thread http://www.insimenator.net/showthread.php?t=478 you will notice the first post is formated differently than the rest of the posts. How can I fix it where they all display the same? I want them to all display as post 2 does.

I was unable to see your community , but if you mean you wish them all to look like legacy then just simply copy your legacy template into the firstpost template.

I hope that works for what your wishing to do.

katholic 02-22-2006 12:20 PM

Yeah I am updating right now so I kind of broke something lol.

Krose 03-03-2006 10:41 PM

installed!..thanx a lot!!..nice hack! :banana:

BeaLzeBuB 03-04-2006 09:22 PM

Thx its great, i installed it and i have edited for my own. i can see in att.

Code:

<!-- post #$post[postid] -->
<if condition="$show['spacer']">
        $spacer_open
        <div id="edit$post[postid]" style="padding:0px 0px $stylevar[cellpadding]px 0px">
        <if condition="!$post['islastshown']"><!-- this is not the last post shown on the page --></if>       
</if>


<table class="tborder" id="post$post[postid]" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <td class="thead" colspan="4" $post[scrolltothis] align="center">
                <div class="normal" style="float:$stylevar[right]">
                        &nbsp;
                        <if condition="$show['postcount']">#<a href="showpost.php?$session[sessionurl]p=$post[postid]&amp;postcount=$post[postcount]" target="new" rel="nofollow" id="postcount$post[postid]" name="$post[postcount]"><strong>$post[postcount]</strong></a></if>
                        <if condition="$show['inlinemod']">
                        <input type="checkbox" name="plist[$postid]" id="plist_$postid" style="vertical-align:middle; padding:0px; margin:0px 0px 0px 5px" value="$post[checkbox_value]" onclick="inlineMod.toggle(this)" />
                        </if>
                </div>
               
                <div class="normal">
                        <!-- status icon and date -->
                                <a style="float:$stylevar[left]" name="post$post[postid]">
                                        <img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_$post[statusicon].gif" alt="$post[statustitle]" border="0" />&nbsp;
                                </a>
                                $post[firstnewinsert]
                        <!-- / status icon and date -->
                                <if condition="$show['messageicon']">
                                        <img class="inlineimg" src="$post[iconpath]" alt="$post[icontitle]" border="0" />
                                </if>
                                <if condition="$post['title']"><strong>$post[title]</strong></if>
                </div>
        </td>
</tr>

<tr>
        <td class="alt2" rowspan="3" width="75" style="vertical-align:top;">
                <img class="inlineimg" src="images/firstpost.gif" alt="" border="0" />               
        </td>
        <td class="alt2">
                <table>
                        <tr>
                                <td>
                                          <strong>Son Giriş:</strong> $post[postdate]
                                </td>
                        </tr>
                        <tr>
                                <td>
                                        <if condition="$show['detailedtime']">
                                                <strong>Post Time :  </strong> $post[posttime]
                                        </if>
                                </td>
                        </tr>
                </table>
        </td>
        <td class="alt2"><br><center><if condition="$show['messageicon']">
                                        <img class="inlineimg" src="$post[iconpath]" alt="$post[icontitle]" border="0" />
                                </if>
                                <if condition="$post['title']"><strong><font color="darkred" size="3">$post[title]</font></strong></if></center>
               
        </td>
        <td class="alt2" rowspan="3">
                <table>
                        <tr>
                                <td>
                                        <!-- user info -->
                                        <div id="postmenu_$post[postid]">
                                                <if condition="$show['profile']">
                                                        <a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
                                                        <script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>
                                                <else />
                                                        $post[musername]
                                                        </if>
                                                </div>
                                                <if condition="$post['usertitle']">
                                                        <div class="smallfont">
                                                                $post[usertitle]
                                                        </div>
                                                </if>
                                                <if condition="$post['rank']">
                                                        <div class="smallfont">
                                                                $post[rank]
                                                        </div>
                                                </if>
                                                <if condition="$show['avatar']">
                                                        <div class="smallfont">
                                                                <a href="member.php?$session[sessionurl]u=$post[userid]">
                                                                <img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
                                                        </div>
                                                </if>
                                                <!-- user info -->
                                        </td>
                                </tr>
                                                                       
                        </table>                               
        </td>
</tr>

<tr>
        <td class="alt1" style="vertical-align:top;">
                <div class="normal">
                        <!-- status icon and date -->
                                        $post[onlinestatus]
                                        $post[iplogged]<if condition="$show['reportlink']">
                        <a href="report.php?$session[sessionurl]p=$post[postid]" rel="nofollow">
                                <img class="inlineimg" src="$stylevar[imgdir_button]/report.gif" alt="Report Bad Submition" border="0" />
                        </a>
                </if>
                </div>

        </td>
        <td class="alt1">
                <div class="normal">
                        <!-- status icon and date -->
                        <if condition="$show['reputationlink']">
                                <a href="#" onclick="reputation($post[postid]); return false;">
                                        <img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" />
                                </a>
                        </if>
                        <if condition="$show['reputation']">
                                <if condition="$show['reppower']">
                                        <a style="float:$stylevar[left]" name="~">$vbphrase[reppower]: $post[reppower]
                                </if>
                                        $post[reputationdisplay]&nbsp;</a>
                        </if>                               
                </div>
        </td>
</tr>





<tr>
        <td class="alt2">
                <if condition="$show['postedited']">
                        <strong>Konunun Son D?zenlenmesi:</strong> $post[edit_date],  $post[edit_time]
                <else />
                        <strong>Konunun Son D?zenlenmesi:</strong>&nbsp;Hi?
                </if>
        </td>
        <td class="alt2">
                <if condition="$thread['rating']">
                        <span style="float:$stylevar[center]">
                                <strong>Konuya Verilen Puan:</strong>
                                        <img alt="" src="$stylevar[imgdir_rating]/rating_$thread[rating].gif" title="<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[thread_rating_x_votes_y_average]</phrase>" />
                        </span>
                <else />
                        <strong>Konuya Verilen Puan:</strong>&nbsp;Yazık ya hi? puan vermemişsiniz adam o kadar emek vermiş
                </if>
        </td>
</tr>

<!-- / user info -->
<tr style="vertical-align: top">
        <td class="alt1" colspan="3" id="td_post_$post[postid]">
                <table width="100%">
                        <tr width="100%">
                                <td width="100%">
                                        <!-- message -->
                                        <div id="post_message_$post[postid]">$post[message]</div>
                                       
                                </td>
                        </tr>
                        <tr>
                                <td width="100%">
                                        <!-- attachments -->
                                        <if condition="$show['attachments']">
                                                <div style="padding:$stylevar[cellpadding]px">
                                               
                                                <if condition="$show['thumbnailattachment']">
                                                        <fieldset class="fieldset">
                                                                <legend>$vbphrase[attached_thumbnails]</legend>
                                                                <div style="padding:$stylevar[formspacer]px">
                                                                $post[thumbnailattachments]
                                                                </div>
                                                        </fieldset>
                                                </if>
                                       
                                                <if condition="$show['imageattachment']">
                                                        <fieldset class="fieldset">
                                                                <legend>$vbphrase[attached_images]</legend>
                                                                <div style="padding:$stylevar[formspacer]px">
                                                                $post[imageattachments]
                                                                </div>
                                                        </fieldset>
                                                </if>
                                               
                                                <if condition="$show['imageattachmentlink']">
                                                        <fieldset class="fieldset">
                                                                <legend>$vbphrase[attached_images]</legend>
                                                                <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                                                $post[imageattachmentlinks]
                                                                </table>
                                                                </fieldset>
                                                </if>
                                               
                                                <if condition="$show['moderatedattachment']">
                                                        <fieldset class="fieldset">
                                                                <legend>$vbphrase[attachments_pending_approval]</legend>
                                                                <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                                                $post[moderatedattachments]
                                                                </table>
                                                        </fieldset>               
                                                </if>
                                        </if>
                                        </div>
                                        <!-- / attachments -->
                                </td>
                        </tr>
                        <tr>
                                <td>
                                        <if condition="$show['attachments']">
                                                <!-- attachments -->                               
                                                <if condition="$show['otherattachment']">
                                                        <fieldset class="fieldset">
                                                                <legend>$vbphrase[attached_files]</legend>
                                                                        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                                                                $post[otherattachments]
                                                                        </table>
                                                        </fieldset>
                                                </if>
                                                <!-- / attachments -->
                                        </if>       
                                </td>
                        </tr>
                </table>
                                <!-- / message -->
        </td>
        <td class="alt1" align="center" width="250">
                <div align="left">
                        <fieldset style="border: 1px dashed #99CCFF; height: 380px;" ><legend>Konuyu A?anın Bilgileri:</legend>
                                <table>
                                        <tr>
                                                <td>
                                                        <div class="smallfont">$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div>
                                                </td>
                                        </tr>
                                        <tr>
                                                <td>
                                                        <div class="smallfont">
                                                                <if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
                                                        </div>
                                                </td>
                                        </tr>
                                        <tr>
                                                <td>
                                                        <div class="smallfont">                                                       
                                                                <if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
                                                        </div>
                                                </td>
                                        </tr>
                                        <tr>
                                                <td>
                                                        <div class="smallfont">                                                                                                       
                                                                <if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
                                                        <div>
                                                </td>
                                        </tr>
                                        <tr>
                                                <td>
                                                        <div class="smallfont">                                                                                                       
                                                                $vbphrase[posts]: $post[posts] <br><br><br><table align="center"><script type="text/javascript"><!--
google_ad_client = "pub-3975276571572787";
google_ad_width = 250;
google_ad_height = 250;
google_ad_format = "250x250_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "880000";
google_color_bg = "FFFFFF";
google_color_link = "880000";
google_color_url = "008000";
google_color_text = "000000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></table>
                                                        </div>
                                                </td>
                                        </tr>
                                </table>
                        </fieldset>
                </div>                       
        </td>
</tr>
                <!-- / attachments -->

        <!-- message, attachments, sig -->
       
<tr>
        <td class="alt2" colspan="4" align="left">
                <div class="normal" style="float:$stylevar[right]"> &nbsp; <if condition="$post['editlink']">
          <a href="$post[editlink]" name="vB::QuickEdit::$post[postid]"><img src="$stylevar[imgdir_button]/edit.gif" alt="$vbphrase[edit_delete_message]" border="0" /></a>
          </if> <if condition="$post['forwardlink']"> <a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a>
          </if> <if condition="$post['replylink']"> <a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif"
          alt="$vbphrase[reply_with_quote]" border="0" /></a> </if> <if condition="$show['quickreply'] AND !$show['threadedmode']">
          <a href="$post[replylink]" rel="nofollow" id="qr_$post[postid]" onclick="return false"><img src="$stylevar[imgdir_button]/quickreply.gif" alt="$vbphrase[quick_reply_to_this_message]" border="0" /></a>
          </if> <if condition="$show['moderated']"> <img src="$stylevar[imgdir_misc]/moderated.gif" alt="$vbphrase[moderated_post]" border="0" />
          </if> </div>
                       
        </td>
</tr>
</table>

<!-- post $post[postid] popup menu -->
<div class="vbmenu_popup" id="postmenu_$post[postid]_menu" style="display:none">
        <table cellpadding="4" cellspacing="1" border="0">
        <tr>
                <td class="thead">$post[username]</td>
        </tr>
        <if condition="$show['profile']">
                <tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$post[userid]">$vbphrase[view_public_profile]</a></td></tr>
        </if>
        <if condition="$show['pmlink']">
                <tr><td class="vbmenu_option"><a href="private.php?$session[sessionurl]do=newpm&amp;u=$post[userid]"><phrase 1="$post[username]">$vbphrase[send_private_message_to_x]</phrase></a></td></tr>
        </if>
        <if condition="$show['emaillink']">
                <tr><td class="vbmenu_option"><a href="sendmessage.php?$session[sessionurl]do=mailmember&amp;u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[send_email_to_x]</phrase></a></td></tr>
        </if>
        <if condition="$show['homepage']">
                <tr><td class="vbmenu_option"><a href="$post[homepage]"><phrase 1="$post[username]">$vbphrase[visit_xs_homepage]</phrase></a></td></tr>
        </if>
        <if condition="$show['search']">
                <tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=finduser&amp;u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[find_all_posts_by_x]</phrase></a></td></tr>
        </if>
        <if condition="$post['userid'] AND $show['member']">
        <tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=buddy&amp;u=$post[userid]"><phrase 1="$post[username]">$vbphrase[add_x_to_buddy_list]</phrase></a></td></tr>
        </if>
        </table>
</div>
<!-- / post $post[postid] popup menu -->




<if condition="$show['spacer']">
        </div>
        $spacer_close
</if>
<!-- / post #$post[postid] -->

i translate to Turkish, if you like that, edit your own lang... thx again

blacklancer 03-15-2006 10:06 PM

ok...i installed this and made the template. i see the option to put the first post when i edit the forum, but nothing is showing up.... did i miss something?

does this work on 3.5.4??

MissKalunji 03-20-2006 04:20 AM

how does the "Last Update " work?

Logikos 03-20-2006 06:44 AM

Works fine in 3.5.4. I'm using this at my site, though I have changed the template around alot! http://www.vbhackers.com/forum/showthread.php?t=1412

ffevo 03-21-2006 09:03 PM

Ho wwould i even test this to see if it works? ho wdo i set something as the first post? when i upload the poroduct it seems to give me some sort of error, but redirects to quickly to let me see it.

D.Ilyin 04-04-2006 05:17 PM

Someone, please, give me suggestion's or tip's how to give permision to group, edit only first post of th tread (with this hack installed)

Tyegurl 04-11-2006 03:40 AM

anyone have template for vbadvance postbit?


All times are GMT. The time now is 08:06 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.01733 seconds
  • Memory Usage 1,939KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete