vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3 Articles (https://vborg.vbsupport.ru/forumdisplay.php?f=187)
-   -   How to turn the "Post Thank You" hack into a "Likes" system similar to vBulletin.org (https://vborg.vbsupport.ru/showthread.php?t=266358)

BirdOPrey5 07-20-2011 12:54 AM

I really can't test it on 4.x right now. I know it works fine on 3.8. I would revert back to the "Thank You" hack and see if it works then- that would confirm a bug with the changed code or just a limitation of the mod itself.

Juggernaut 07-20-2011 01:16 AM

Quote:

Originally Posted by BirdOPrey5 (Post 2222677)
I really can't test it on 4.x right now. I know it works fine on 3.8. I would revert back to the "Thank You" hack and see if it works then- that would confirm a bug with the changed code or just a limitation of the mod itself.

After checking the default postbit_display_complete plugin, it seems to be a bug with the changed code, as the reputation does work with the default code. Fixed, it seems I hadn't updated the code correctly, it was totally my fault.

Post Reader 07-21-2011 12:37 PM

BOP the problem is still there... AJAX feature is not working... when ever i click on the like button the page refreshes which in post thank you hack was not the case...

any solution?

BirdOPrey5 07-21-2011 01:04 PM

Quote:

Originally Posted by Post Reader (Post 2223195)
BOP the problem is still there... AJAX feature is not working... when ever i click on the like button the page refreshes which in post thank you hack was not the case...


any solution?

I suggest reverting back to the original Post Thank You Hack (re-install if you must and revert the templates) and see if AJAX is working before these edits are made.

Post Reader 07-21-2011 03:04 PM

have totally re installed the product but will try again now... let me do this, i'll get back to you... thank you

--------------- Added [DATE]1311308942[/DATE] at [TIME]1311308942[/TIME] ---------------

now its working fine... i have re-uploaded all files again and then imported the product.. Thanx BOP

Juggernaut 07-24-2011 01:08 AM

Quote:

Originally Posted by Tasking Mickey (Post 2217823)
I was just about to mention that, if your forum has lets say, 100 members, and you import the likes system, something like here, it would show

Likes (12): Tasking Mickey, Bird0Prey5, Lynne, Princetoon and 15 others

The 15 others, would show the other people who liked that post, it'd be much better, since it won't take up the whole post with like 20 usernames in the like box.

This would be nice, if posible. Only thing is, I don't think the vbulletin 4 version of the thanks system keeps track of the likes given and received, like the likes system here on vbulletin.org. Still way better than the original layout, in my opinion. :D

NTMID8 07-29-2011 10:02 PM

Quote:

Originally Posted by michal72 (Post 2222087)
I have modified a little bit Joe's proposal to work with vb4

The Likes box is centered under the post. How can I make it aligned left with the post and signature?

Also, I can clearly see where to change the width of the box, colors, etc, but where do I change the font and size of the text within the box?

Juggernaut 07-30-2011 01:31 AM

Quote:

Originally Posted by michal72 (Post 2222087)
I have modified a little bit Joe's proposal to work with vb4

Change post_thanks_box template to:

PHP Code:

<div <vb:if condition="!$post_thanks_box == 1"style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 

0px auto 0px auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;display:none" 
<vb:else /> 
style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 0px auto 0px auto; -webkit-border-radius: 5px; -

moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;"
</vb:if> id="post_thanks_box_{vb:raw post.postid}">
{
vb:raw post_thanks_box}
</
div

In posbit_legacy template find:
PHP Code:

<vb:if condition="$show['postedited'] || $post['signature']"

and add before:

PHP Code:

{vb:raw template_hook.postbit_messagearea_end

In Admin CP -> Plugin Manager, edit the plugin: Post Thank You Hack on hook: postbit_display_complete

Find:
PHP Code:

$template_hook['postbit_end'] .= $templater->render(); 

and replace with:
PHP Code:

    $template_hook['postbit_messagearea_end'] .= $templater->render(); 

You can also modify window's content:

In post_thanks_postbit template replace:

PHP Code:

    <h2 class="<vb:if condition="!$vboptions['legacypostbit']">post</vb:if>title">
        <
vb:if condition="$post['post_thanks_amount'] == 1">
            {
vb:rawphrase post_thanks_user_says, {vb:raw post.username}}
        <
vb:else />
            {
vb:rawphrase post_thanks_users_say, {vb:raw post.post_thanks_amount_formatted}, {vb:raw post.username}}
        </
vb:if>
    </
h2>
    <
div class="content">
        <
div id="post_thanks_bit_{vb:raw post.postid}">
            <
blockquote class="postcontent restore">
                {
vb:raw post.post_thanks_bit}
            </
blockquote>
        </
div>
    </
div

with:
PHP Code:

    <div class="content">
        <
div id="post_thanks_bit_{vb:raw post.postid}">
            <
blockquote class="postcontent restore">
                <
strong><vb:if condition="$post['post_thanks_amount'] == 1">
            {
vb:rawphrase post_thanks_user_says, {vb:raw post.username}}
        <
vb:else />
            {
vb:rawphrase post_thanks_users_say, {vb:raw post.post_thanks_amount_formatted}, {vb:raw post.username}}
        </
vb:if>
 </
strong>{vb:raw post.post_thanks_bit}
            </
blockquote>
        </
div>
    </
div

BR

This tutorial is exellent, but I've found that I can't change the background color or size of the post thanks box, no matter where I change the code. Has anybody else been able to make changes to the post thanks display?

michal72 07-30-2011 05:34 AM

Quote:

Originally Posted by Juggernaut (Post 2226653)
This tutorial is exellent, but I've found that I can't change the background color or size of the post thanks box, no matter where I change the code. Has anybody else been able to make changes to the post thanks display?

To be able to do it, first you have to modify post_thanks_postbit template.
Please try change it to:
PHP Code:

<vb:if condition="$bbuserinfo['usergroupid'] == 6 || $post['show_thanks_remove_option']">
    <
div class="smallfont" style="float:{vb:stylevar right}">
        <
vb:if condition="$bbuserinfo['usergroupid'] == 6">
            <
a href="post_thanks.php?do=post_thanks_remove_all&amp;p={vb:raw post.postid}"<vb:if condition="$vboptions['disable_ajax'] != 2"onclick="return post_thanks_remove_all({vb:raw post.postid}, <vb:if condition="$vboptions['post_groan_integrate']">true<vb:else />false</vb:if>);"</vb:if> rel="nofollow">{vb:rawphrase post_thanks_remove}</a>
        </
vb:if>
        <
vb:if condition="$bbuserinfo['usergroupid'] == 6 && $post['show_thanks_remove_option']">
            |
        </
vb:if>
        <
vb:if condition="$post['show_thanks_remove_option']">
            <
a href="post_thanks.php?do=post_thanks_remove_user&amp;p={vb:raw post.postid}"<vb:if condition="$vboptions['disable_ajax'] != 2"onclick="return post_thanks_remove_user({vb:raw post.postid}, <vb:if condition="$vboptions['post_groan_integrate']">true<vb:else />false</vb:if>);"</vb:if> rel="nofollow">{vb:rawphrase post_thanks_remove_user}</a>
        </
vb:if>
    </
div>
    </
vb:if>
 
    <
div class="content">
        <
div id="post_thanks_bit_{vb:raw post.postid}">
            <
blockquote class="postcontent restore">
                <
strong><vb:if condition="$post['post_thanks_amount'] == 1">
            {
vb:rawphrase post_thanks_user_says, {vb:raw post.username}}
        <
vb:else />
            {
vb:rawphrase post_thanks_users_say, {vb:raw post.post_thanks_amount_formatted}, {vb:raw post.username}}
        </
vb:if>
 </
strong>{vb:raw post.post_thanks_bit}
            </
blockquote>
        </
div>
    </
div

regards

PS. An appendix to post: https://vborg.vbsupport.ru/showpost....7&postcount=35

Juggernaut 07-30-2011 07:00 AM

Quote:

Originally Posted by michal72 (Post 2226708)
To be able to do it, first you have to modify post_thanks_postbit template.
Please try change it to:
PHP Code:

<vb:if condition="$bbuserinfo['usergroupid'] == 6 || $post['show_thanks_remove_option']">
    <
div class="smallfont" style="float:{vb:stylevar right}">
        <
vb:if condition="$bbuserinfo['usergroupid'] == 6">
            <
a href="post_thanks.php?do=post_thanks_remove_all&amp;p={vb:raw post.postid}"<vb:if condition="$vboptions['disable_ajax'] != 2"onclick="return post_thanks_remove_all({vb:raw post.postid}, <vb:if condition="$vboptions['post_groan_integrate']">true<vb:else />false</vb:if>);"</vb:if> rel="nofollow">{vb:rawphrase post_thanks_remove}</a>
        </
vb:if>
        <
vb:if condition="$bbuserinfo['usergroupid'] == 6 && $post['show_thanks_remove_option']">
            |
        </
vb:if>
        <
vb:if condition="$post['show_thanks_remove_option']">
            <
a href="post_thanks.php?do=post_thanks_remove_user&amp;p={vb:raw post.postid}"<vb:if condition="$vboptions['disable_ajax'] != 2"onclick="return post_thanks_remove_user({vb:raw post.postid}, <vb:if condition="$vboptions['post_groan_integrate']">true<vb:else />false</vb:if>);"</vb:if> rel="nofollow">{vb:rawphrase post_thanks_remove_user}</a>
        </
vb:if>
    </
div>
    </
vb:if>
 
    <
div class="content">
        <
div id="post_thanks_bit_{vb:raw post.postid}">
            <
blockquote class="postcontent restore">
                <
strong><vb:if condition="$post['post_thanks_amount'] == 1">
            {
vb:rawphrase post_thanks_user_says, {vb:raw post.username}}
        <
vb:else />
            {
vb:rawphrase post_thanks_users_say, {vb:raw post.post_thanks_amount_formatted}, {vb:raw post.username}}
        </
vb:if>
 </
strong>{vb:raw post.post_thanks_bit}
            </
blockquote>
        </
div>
    </
div

regards

PS. An appendix to post: https://vborg.vbsupport.ru/showpost....7&postcount=35

Thank you Michal, but the plugin edit you provided seems to have stopped working with vbulletin 4.1.5, I can't get the edit to funcion.

Edit: it still works great, I had overlooked one of the template edits.

Eryeal 08-01-2011 01:21 PM

Hello,

First, thanks for the instructions to change this mod! I think it's great.

However, I am having a small problem in regards to the postbit_display_start change which brings the like into the post.

When I make this change, it "pushes" the rest of the bottom of the post (the buttons, quote, reply, etc) OFF of the post itself. So the green like line is at the bottom of the post, but for some reason it is screwing up the buttons that are supposed to be below it by pushing them completely outside of the post.

For reference - vb 3.8, postbit legacy being used.

BirdOPrey5 08-01-2011 01:27 PM

Quote:

Originally Posted by Eryeal (Post 2227661)
Hello,

First, thanks for the instructions to change this mod! I think it's great.

However, I am having a small problem in regards to the postbit_display_start change which brings the like into the post.

When I make this change, it "pushes" the rest of the bottom of the post (the buttons, quote, reply, etc) OFF of the post itself. So the green like line is at the bottom of the post, but for some reason it is screwing up the buttons that are supposed to be below it by pushing them completely outside of the post.

For reference - vb 3.8, postbit legacy being used.

Either the postbit_legacy edits were made wrong or perhaps you have a custom style? Custom styles may require different edits- these instructions are only for the default vbulletin style- you may need to make adjustments for custom styles.

Eryeal 08-01-2011 01:35 PM

Quote:

Originally Posted by BirdOPrey5 (Post 2227665)
Either the postbit_legacy edits were made wrong or perhaps you have a custom style? Custom styles may require different edits- these instructions are only for the default vbulletin style- you may need to make adjustments for custom styles.

Thanks for the quick response! I went through things about 5 times trying to figure it out, and then decided to once again look at legacy after your post and the error was right smack there in front. Unbelievable. Thanks again for the quick response.

goxy63 08-05-2011 09:26 AM

How about that dislike on ur forums, will you share that with us? :D

BirdOPrey5 08-05-2011 12:15 PM

Quote:

Originally Posted by goxy63 (Post 2229591)
How about that dislike on ur forums, will you share that with us? :D

The "dislike" was the "Post Groan Hack" with the "Groan" changed to "dislike" pretty much exactly the same thing as changing "thanks" to "like."

VBIran 08-05-2011 04:10 PM

Dear michal72 ,

How can i remove the small space at the bottom of the likebox ?

Like this image :

https://vborg.vbsupport.ru/attachmen...1&d=1309952895

This image haven't any bottom margin .

Edit : I solve the problem . i just change .postrow in postbit.css and remove paddings ;)

viper357 08-24-2011 06:45 PM

Quote:

Originally Posted by BirdOPrey5 (Post 2217355)
The last steps are only if you want to integrate the Like box INTO the posts like on my forum.

If you do the next step is pretty easy-

In Admin CP -> Plugin Manager, edit the plugin: Post Thank You Hack on hook: postbit_display_start

Find the line:

Code:

eval('$template_hook[postbit_end] .= " ' . fetch_template('post_thanks_box') . '";');
and change it to:

Code:

eval('$template_hook[postbit_signature_end] .= " ' . fetch_template('post_thanks_box') . '";');
OK This will move the "Like" box into the actual post table instead of below it.

Hi Joe, small problem, everything works 100% but as soon as I do the above edit, I get a blank page on any link except for my vbadvanced home page. If I undo the edit it makes no difference until I re-upload the xml file (which I assume then replaces the small plugin), then the forum works again. Any idea's? I'm desperate to have this display within the posts. ;)

BirdOPrey5 08-24-2011 08:12 PM

This code by definition is only run when viewing threads/posts... If something was causing all your pages to be blank (including forumhome, forumdisplay, etc...) then it wasn't this code. You might have other issues.

What version of vBulletin are you using?

viper357 08-25-2011 05:07 AM

My apologies, I should have said when trying to view any thread then I get a blank page. I'm on 3.8.5

--------------- Added [DATE]1314263167[/DATE] at [TIME]1314263167[/TIME] ---------------

Is there a way to manually edit the postbit legacy template and add the code for the thanks box, instead of using a plugin?

BirdOPrey5 08-25-2011 04:21 PM

Probably but it's not something I've spent time attempting.

Which postbit style do you use? Have you checked for the existence of the template hook in that template?

Can you try it on the default style and see if you have the same problem?

viper357 08-26-2011 05:58 AM

Well that's really strange, I tested it on the default style and it worked, so went back to my modified style and it was still working, I made no other changes whatsoever, really odd, oh well, it's working now, I don't know how or why, lol. Thanks for the help and for this mod.

Joe, pretty please Joe :p, I noticed on your site that you give your users the option to switch off this hack in their usercp. Would you mind sharing how to do that? Thanks.:)

BirdOPrey5 08-26-2011 08:49 AM

Quote:

Originally Posted by viper357 (Post 2238201)
Well that's really strange, I tested it on the default style and it worked, so went back to my modified style and it was still working, I made no other changes whatsoever, really odd, oh well, it's working now, I don't know how or why, lol. Thanks for the help and for this mod.

Joe, pretty please Joe :p, I noticed on your site that you give your users the option to switch off this hack in their usercp. Would you mind sharing how to do that? Thanks.:)

Glad it's working.

Step 1- Make new user profile field, single selection radio box, options:
No
Yes

Step 2- Edit the postbit_display_complete plugin. Change the 2nd Conditional to:
Code:

if (can_thank_this_post($post, $thread['isdeleted']) && !thanked_already($post) && $vbulletin->userinfo['field29'] != "No" && $post['userid'] != 0)
Step 3- Edit the postbit_display_start plugin. Change the 1st Conditional to:
Code:

if ($vbulletin->userinfo['field29'] != "No" && !(defined('LOCATION_BYPASS')) && !(post_thanks_off($this->thread['forumid'], $this->post, $this->thread['firstpostid'], THIS_SCRIPT)))
Change "field29" in each to whatever field number is assigned to your custom profile filed... maybe field5 or field6, depends how many others you already have.

Note: Putting the "No" before the "Yes" and checking for "No" in the code is important so that it's active for everyone EXCEPT those who specifically opt-out of it.

viper357 08-28-2011 05:05 AM

Thanks Joe, much appreciated. :)

EddyMaxx 09-05-2011 09:08 PM

Great tutorial. I was able to follow it all the way through for both the LIKE and DISLIKE buttons.

Nice job Joe!

NTMID8 09-06-2011 01:43 AM

Quote:

Originally Posted by MagicThemeParks (Post 2217361)
"Sorry, you are not allowed to 'Like' this post."

Wasn't the standard, "you've liked this guy's posts too much" message :)

Quote:

Originally Posted by BirdOPrey5 (Post 2218236)
FYI to all- Paul has reported the bug preventing the "Liking" of articles here on vb.org is fixed. :up:

Any idea what Paul did to fix this error? I have a few users randomly reporting the same on my forum. (using v4.1.5)

Quote:

Originally Posted by Post Reader (Post 2219525)
looks there is a problem when somone thanx the post the page needs to refresh again and AJAX feature is not working...

Has anyone figured out how to get AJAX working again? (using v4.1.5)

Quote:

Originally Posted by MagicThemeParks (Post 2222407)
If you select the option to work with reputation points you can.

Probably right in front of me but I am not seeing it. Where do you set this up to work with reputation points?

--------------- Added [DATE]1315278204[/DATE] at [TIME]1315278204[/TIME] ---------------

Quote:

Originally Posted by BirdOPrey5 (Post 2238231)
Glad it's working.

Step 1- Make new user profile field, single selection radio box, options:
No
Yes

Step 2- Edit the postbit_display_complete plugin. Change the 2nd Conditional to:
Code:

if (can_thank_this_post($post, $thread['isdeleted']) && !thanked_already($post) && $vbulletin->userinfo['field29'] != "No" && $post['userid'] != 0)
Step 3- Edit the postbit_display_start plugin. Change the 1st Conditional to:
Code:

if ($vbulletin->userinfo['field29'] != "No" && !(defined('LOCATION_BYPASS')) && !(post_thanks_off($this->thread['forumid'], $this->post, $this->thread['firstpostid'], THIS_SCRIPT)))
Change "field29" in each to whatever field number is assigned to your custom profile filed... maybe field5 or field6, depends how many others you already have.

Note: Putting the "No" before the "Yes" and checking for "No" in the code is important so that it's active for everyone EXCEPT those who specifically opt-out of it.

Anyone know how to get this working under v4.1.5? I made the change to postbit_display_complete as shown above. There is no postbit_display_start in v4 but that line exists in postbit_display_complete so I made that edit there as well. Tested out and regardless of whether my option is set to No or Yes, I can still see the Like system.

MagicThemeParks 09-06-2011 02:48 AM

Post #35 and Post #36 help you with the 4.x install instructions and alternate placement. :up:

NTMID8 09-06-2011 03:13 AM

Quote:

Originally Posted by MagicThemeParks (Post 2242426)
Post #35 and Post #36 help you with the 4.x install instructions and alternate placement. :up:

I skimmed those but since I had it working other than AJAX I did not pay too much attention. Plus, they do not help with the user option to disable the whole system that BoP posted more recently.

However, I did fix my AJAX problem by going back and having a second look. For my site, the design of the Like box is all contained within the template post_thanks_postbit. Therefore the contents of my template post_thanks_box was simply:

PHP Code:

{vb:raw post_thanks_box

Upon taking another look, I changed it to the following which fixed the AJAX issue:

PHP Code:

<div id="post_thanks_box_{vb:raw post.postid}">
{
vb:raw post_thanks_box}
</
div

So thanks for making take a second look! :)

BirdOPrey5 09-06-2011 10:04 AM

Quote:

Originally Posted by NTMID8 (Post 2242415)
Anyone know how to get this working under v4.1.5? I made the change to postbit_display_complete as shown above. There is no postbit_display_start in v4 but that line exists in postbit_display_complete so I made that edit there as well. Tested out and regardless of whether my option is set to No or Yes, I can still see the Like system.

You can just edit the postbit_display_start and postbit_display_complete plugins... put the code that mentions the template hook inside this conditional:

PHP Code:

if ($vbulletin->userinfo['field29'] != "No")
{
     
//Original Code Here


again change "29" to whatever field number yours is.

As for your earlier question about what Paul did- it doesn't matter, the vb.org like system is completely custom and has nothing to do with the mod this article is based on- so nothing Paul did here is relevant.

kevin.kool 09-21-2011 03:18 PM

Hope you will release this article for vB4 soon :)

HMBeaty 09-21-2011 03:19 PM

Quote:

Originally Posted by kevin.kool (Post 2248634)
Hope you will release this article for vB4 soon :)

Read the previous posts to use this with vB 4

Pirat3 09-21-2011 09:40 PM

So I installed this, the Thanks template edits work great, however for Post Groan, the groan templates are still default (dont show in bar)

I have them integrated/connected with Post Thanks in settings

Running VB 3.8 any ideas? Do I have to do any other template edits? I saw the <IF> condition I assumed this was already built in.

BirdOPrey5 09-22-2011 09:53 AM

Yo have to do basically the same edits you did for Thanks on the Groan's hack now.

christon26 09-25-2011 11:23 AM

Awesome! Thanx :)

GavoTrav 10-16-2011 07:07 PM

Quote:

Originally Posted by BirdOPrey5 (Post 2217355)
Code:

<div style="background-color: #CAEBDA; border: 2px ridge #7BBA99; border-width: 2px 2px 2px 2px; padding: 2px; width:99%; margin: 0px auto 0px auto; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; margin-top:auto; margin-bottom:0px;">

<table border="0" width="100%">
<tr>
<td width="100">
<strong>Likes: ($post[post_thanks_amount_formatted])</strong><br />
                               
</td><td>
<div style="float:left;">$post[post_thanks_bit]</div> <div style="float:right;"><if condition="$bbuserinfo['usergroupid'] == 6"><a href="post_thanks.php?do=post_thanks_remove_all&amp;p=$post[postid]"<if condition="$vboptions[disable_ajax] != 2"> onclick="return post_thanks_remove_all($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>);"</if> rel="nofollow">Delete All</a></if><if condition="$bbuserinfo['usergroupid'] == 6 AND $post['show_thanks_remove_option']"> | </if><if condition="$post['show_thanks_remove_option']"><a href="post_thanks.php?do=post_thanks_remove_user&amp;p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2"> onclick="return post_thanks_remove_user($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>);"</if> rel="nofollow">Unlike</a></if></div>
</td></tr></table>
<div>


You missed a Div tag on one of the boxes I Highlighted it!

BirdOPrey5 10-16-2011 10:16 PM

Thanks. I edited it into the first post. :up:

JimxJNM 11-12-2011 04:00 AM

Nice man, will this able to work on vBulletin 4.1.4?

BirdOPrey5 11-12-2011 09:51 AM

Quote:

Originally Posted by JimxJNM (Post 2267161)
Nice man, will this able to work on vBulletin 4.1.4?

In an earlier post someone gave new instructions for 4.x.

JimxJNM 11-14-2011 11:06 AM

i'm using DBTech thanks v2 and i don't think it will work for me =/

BirdOPrey5 12-16-2011 02:13 PM

This is instructions for Abe1's mod. It won't work with any other thanks mod.

JimxJNM 01-01-2012 06:55 AM

Hello BirdOPrey

I don't have this code on postbit_legacy
Code:

                <!-- / edit note -->
                </if>

        </td>
</tr>

I'm on 3.8.7 I got everything fixed.. but i don't have the code.. is it on postbit template?


EDIT: Also look what happens to my show thread..

IMAGE: http://puu.sh/c66Y

:(

Thanks


All times are GMT. The time now is 07:17 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02411 seconds
  • Memory Usage 1,959KB
  • 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
  • (8)bbcode_code_printable
  • (12)bbcode_php_printable
  • (22)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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