vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Show Thread Enhancements - [AJAX] Post Thank You Hack (https://vborg.vbsupport.ru/showthread.php?t=122944)

NolF 06-20-2007 11:43 PM

Quote:

Originally Posted by kwblue
I'm having some issues It's been a while since I installed the hack and I just noticed that when threads have more than 1 post, the image (thank you image) is duplicated along with the thanks information in the header.

Read this

Quote:

Originally Posted by gregfindley
I have installed this hack following the instructions, and nothing has appeared at all? I'm running 3.6.7 so I installed the 6.0 gold followed by the 3.6.7 fix, but still nothing?

version 6.0 Gold is designed for 3.6.5 and under, even tho it works on the following version, it would mean you will have to do the template modifications indicated in the instructions. As a result you wouldn't be enjoying the joy of the 3.6.7 upgrade to its fullest :(.
Use version 6.2 for vBulletin 3.6.7 ^^ (make sure your templates have the hooks installed)

Quote:

Originally Posted by sim20
The template is correct, the button image is in all relevant folders and i see this in user info:
[...]
But still no button!!

Have a look at this post and check that your hooks are installed as indicated there

Quote:

Originally Posted by sunnycher and Fungsten
I don't have a post_thanks_postbit_info template.
I have it without the info on the end.

That template is only available on version 6.2. So I'm assuming you are using 6.0 Gold. On this version, you do the modification post_thanks_postbit_info does directly into your postbit(_legacy) template.
So go to your postbit(_legacy) template
and accordign to the isntractions
Quote:

in postbit AND postbit_lagacy:

find:
--------------------------------------------------------------------
$vbphrase[posts]: $post[posts]
--------------------------------------------------------------------

AFTER place this:
--------------------------------------------------------------------
<!-- Start Post Thank You Hack -->
<if condition="$post[userid]">
<br />
$vbphrase[post_thanks_thanks]: $post[post_thanks_user_amount]
<br />
<if condition="$post[post_thanks_thanked_times_on] == 1">
$vbphrase[post_thanks_time_post]
<else />
<if condition="$post[post_thanks_thanked_posts_on] == 1">
<phrase 1="$post[post_thanks_thanked_times]">$vbphrase[post_thanks_times_post]</phrase>
<else />
<phrase 1="$post[post_thanks_thanked_times]" 2="$post[post_thanks_thanked_posts]">$vbphrase[post_thanks_times_posts]</phrase>
</if>
</if>
</if>
<!-- End Post Thank You Hack -->
--------------------------------------------------------------------
You can put your conditional above the <!-- Start Post Thank You Hack --> comment, and the </if> after the End comment ^^

Quote:

Originally Posted by sunnycher
How to I remove the thanks stats in the members block/info?

Undo do the template changes in memberinfo template contained within the <!-- Start Post Thank You Hack --> and <!-- End Post Thank You Hack --> comments, including the comments them selves. Either that or just add a conditional as specified previously ^^

westpac 06-21-2007 04:37 AM

wow it worked thanks thas hella dope i luv yall

Spinball 06-21-2007 06:01 AM

Has anyone experienced the latest version of this hack slowing down their forums?
I upgraded vB from 3.6.4 to 3.6.7 and installed the new Thank you hack right away (with extra plugin bug fix).
I then went away for 3 days and returned to lots of complaints of a slow forum. First thing I did was disable all the plugin hacks. I think it's the Thank You hack which is crippling our forum. I have disabled it for now. Is it likely to be having a big effect on the server?

adam2484 06-21-2007 08:22 AM

does anybody know why my total thanks is not rising when the thanks button is pressed?

i basically get this
Thanks: 0
Thanked 1 Time in 1 Post

to see it this is my page, http://forums.medicineapplications.c...hread.php?t=17

many thanks in advance!

EDIT: ok the above is me stupid! is there any way of taking of the 'thanks' bit. so only the number of times someone has been thanked is displayed

sim20 06-21-2007 09:47 AM

Quote:

Have a look at this post and check that your hooks are installed as indicated there
Fixed, i had the horizontal postbit enabled, changed to vertical and its there, can i use the hack in horizontal mode?

sunnycher 06-21-2007 12:03 PM

Ok I may of asked my question wrong, I'm sure I did :)

How do I get rid of the stats in the members block in their posts. Is that post-bits?
The other got rid of it in their profile, which is fine.
I just want to get rid of Thank You stats on each member all together.
TIA!!

gregfindley 06-21-2007 10:56 PM

Quote:

Originally Posted by NolF (Post 1272820)
Read this
version 6.0 Gold is designed for 3.6.5 and under, even tho it works on the following version, it would mean you will have to do the template modifications indicated in the instructions. As a result you wouldn't be enjoying the joy of the 3.6.7 upgrade to its fullest :(.
Use version 6.2 for vBulletin 3.6.7 ^^ (make sure your templates have the hooks installed)

Thanks NolF got it sorted now :D (need the mod here so I can thank you properly!!)

Do you have any idea how to remove the "Thanks: 0" from the postbit legacy. As my postbit is quite busy already I want to lose the stat to show how many times a user has thanked other users, but keep the stat to say how many times that user has been thanked by others.

Hope that makes sense!
Thanks, Greg

NolF 06-22-2007 03:03 PM

Quote:

Originally Posted by Spinball
I then went away for 3 days and returned to lots of complaints of a slow forum. First thing I did was disable all the plugin hacks. I think it's the Thank You hack which is crippling our forum. I have disabled it for now. Is it likely to be having a big effect on the server?

I haven't. I don't think it is likely to cause any slowness in the server, maybe one of the plugins in combination with other hacks might have some problem, but for me is working fine :D

Quote:

Originally Posted by adam2484
is there any way of taking of the 'thanks' bit. so only the number of times someone has been thanked is displayed

Quote:

Originally Posted by gregfindley
Do you have any idea how to remove the "Thanks: 0" from the postbit legacy.

On template post_thanks_postbit_info find
<div>$vbphrase[post_thanks_thanks]: $post[post_thanks_user_amount_formatted]</div>
either delete it or wrap it in a conditional, I normally put one so only admins can see it (is good to monitor abuse etc ^^)
<if conditional="$bbuserinfo[usergroupid] == 6"> or <if conditional="$bbuserinfo[userid] == XX">
First one for usergroupid, the second one if you only want your-self to be able to see it.
Read This tutorial about conditionals, very useful.

Quote:

Originally Posted by sim20
Fixed, i had the horizontal postbit enabled, changed to vertical and its there, can i use the hack in horizontal mode?

Put the template hooks in the horizontal mode template (if horizontal is like vbulletin.org tempalte is called "postbit" otherwise (like phpbb forums generally) is "postbit_legacy" Put the hooks where they belong and it should work on the other method too ^^

Quote:

Originally Posted by sunnycher
I just want to get rid of Thank You stats on each member all together.

Just follow the instructions on my previous post Consists of two parts, first one for the posts and second one for profile.

vitrag24 06-22-2007 06:09 PM

i have vb 3.6.4 aND version of this hack 5.3
can i update this addon?is it compatible with vb 3.6.4 also?

and how to update now?

Quantnet 06-22-2007 06:10 PM

Quote:

Originally Posted by NolF (Post 1273978)
On template post_thanks_postbit_info find
<div>$vbphrase[post_thanks_thanks]: $post[post_thanks_user_amount_formatted]</div>
either delete it or wrap it in a conditional, I normally put one so only admins can see it (is good to monitor abuse etc ^^)
<if conditional="$bbuserinfo[usergroupid] == 6"> or <if conditional="$bbuserinfo[userid] == XX">
First one for usergroupid, the second one if you only want your-self to be able to see it.
Read This tutorial about conditionals, very useful.

Which conditions would you use so that it only display Thanks and Thanked when it > 1.
I used to be able to do this with the if condition in earlier version but I don't know how to do it now.
Something like < if $vbphrase[post_thanks_thanks] >=1 or something


All times are GMT. The time now is 10:11 PM.

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.04907 seconds
  • Memory Usage 1,768KB
  • 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
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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