Lets see 6.2 requires your templates to be up to date meaning 3.6.6 (3.6.7 didn't have any changes) This update adds template hooks on the postbit and postbit_legacy templates.
When abe1 updated his hack, he removed the template changes and used the hooks instead making the installation as simple as possible. IF you don't have this template hooks, then this modification won't be able to show the button or how many groans are there.
Quote:
Originally Posted by Ramsesx
"You have to update your templates so they included the latest $template_hook variables."
|
means to have the postbit and postbit_legacy up to date.
The quickest way to achieve this is reverting the template, but if you have it modify use the vBulletin tools to compare the changes and update your templates.
---------
Once done this, vBulletin 3.6.7 (not sure if 3.6.6 too) has a small bug which causes to to show more than one botton etc... as shown on the image.
To fix it, download
product template hook vb367 fix.zip. You can find it on the first post

Once installed, it will be fixed
----------------
Quote:
Originally Posted by tobias_t
Apologies if this has been asked and answered before, but - how can I deactivate thanks given and received being displayed in the user profile bar? I am eager to enable this hack in our forums.
Thanks, Tobias
|
If you
don't want to show "Thanks: x" "Thanked 1 time in 1 post"
Go to the template called "
post_thanks_postbit_info" and either delete all its contents or (I would do this second one) put a conditional at the beginning for example
(So only users with this usergroups can see it)
<if condition="is_member_of($bbuserinfo, 5,6,7)">
or so only peeople with those userids can see it
<if condition="in_array($bbuserinfo[userid], array(1,8,200))">
Don't forget to put the </if>
I'm sure there are other ways, but these are the ones I know