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 ^^