PDA

View Full Version : How to turn the "Post Thank You" hack into a "Likes" system similar to vBulletin.org


BirdOPrey5
07-05-2011, 10:00 PM
Note: These instructions are for VB 3.8. See post #35 by michal72 for a VB4 adaptation.

First off, the "Likes" system on vBulletin.org is custom and does not use any other hacks- however it is too custom to be released. Instead you can modify an existing mod to do mostly the same thing.

Several people have asked me for info on how to do this so I figured I'd write it up and post it here.

You can see what it looks like on my live forum: http://www.juot.net/forums/showthread.php?t=60059

https://vborg.vbsupport.ru/attachment.php?attachmentid=130766&stc=1&d=1309952895

You need the latest version Abe1's Post Thank You Hack (7.7): Here. (https://vborg.vbsupport.ru/showthread.php?t=165673)

What you can see above was done with this mod plus some phrase changes and template edits, and an optional plugin edit.

So step 1 is make sure you have the ?Thank You? mod installed and working.

Step 2 is to change the following phrases. In Admin CP use Phrase Manager to "translate" these phrases from "Thank You" to "Like(s)":

You can of course use your own translations but this is what I used-

Phrase Name | Translation:
post_thanks_already | You have already liked this post!
post_thanks_remove_user | Remove Your Like
post_thanks_search | Find All Liked Posts
post_thanks_search_user | Find all liked posts by {1}
post_thanks_search_user_gave | Find all posts liked by {1}
post_thanks_thanked_post | Liked Post
post_thanks_thanks | Likes
post_thanks_time_post | Liked 1 Time in 1 Post
post_thanks_times_post | Liked {1} Times in 1 Post
post_thanks_times_posts | Liked {1} Times in {2} Posts
post_thanks_total_thanks | Total Likes
post_thanks_user_says | The Following User Likes This Post:
post_thanks_users_say | The Following {1} Users Like This Post:

Some of the above we won't actually use in my implementation but best to fix them all to be consistent.

Step 3:

At this point we need to have a "like.png" file in your images/buttons/ directory and the button directory for every custom style you have, if any. I will attach a couple of options but consider finding or making one unique to your forum.

Step 4:

Now we have to edit a couple of templates.

Edit the template: post_thanks_button

Replace it all with this:

<a href="post_thanks.php?$session[sessionurl]do=post_thanks_add&amp;p=$post[postid]&amp;securitytoken=$bbuserinfo[securitytoken]" id="post_thanks_button_$post[postid]"<if condition="$vboptions[disable_ajax] != 2"> onclick="return post_thanks_give($post[postid], <if condition="$vboptions[post_groan_integrate]">true<else />false</if>);"</if> <if condition="$display_thanks_image == 'none'">style="display:none"</if> rel="nofollow"><img src="$stylevar[imgdir_button]/like.png" alt="Like This Post" border="0" /></a>

Note: The above template will work correct if you use the "Post Groan Hack (https://vborg.vbsupport.ru/showthread.php?t=193489)" which I also use. You can convert the "Post Groan Hack" into an "dis-like" system basiclly the same way we are changing "Thank You" to "Likes."


Edit the template: post_thanks_postbit_legacy OR post_thanks_postbit (whichever postbit you use)

Replace it all with this:

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



At this point you should have a nice light-green "Like" box appearing below each post someone "Likes." You might want to stop here.

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:

eval('$template_hook[postbit_end] .= " ' . fetch_template('post_thanks_box') . '";');

and change it to:

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.

Again this is a good place to stop if you are happy.

However there is one more template edit I did to keep the Like Box inside the post but at the very bottom of it regardless how short the post might be. In this case we must edit the postbit_legacy template. (I don't use the regular postbit template so I don't have any further instructions for people who use regular postbit. The following is ONLY for postbit_legacy.)

IMPORTANT- Copy all of your postbit_legacy template to a text file and save it as a backup in case you make an error or the instructions don't work for you. You can also "Revert" the template but that will undo ALL customizations you may have made.

Find in postbit_legacy:

<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">

Change it to:

<td class="alt2" rowspan="2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">

Find:

$template_hook[postbit_signature_end]

And delete it.

Find:

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

</td>
</tr>


Add BELOW it:

<tr>
<td class="alt1" valign="bottom">
$template_hook[postbit_signature_end]
</td>
</tr>

----

And that should do it.

Of course you are encouraged to make some customizations... Most of what you'll want to change is in the top part of the post_thanks_postbit_legacy template. The background color, border style, and the like are all controlled by this 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;">

On my forum I actually use a background image texture but did not include it here as it is an unnecessary complication.

Feel free to play around and tweak the box to your liking. :up:

MagicThemeParks
07-06-2011, 11:15 AM
I've already done most of these edits on one site and plan to do the same on others. But, this should help those searching for an option without doing a custom add-on. Great explanation as always Joe! :up:

UNRELATED: Noticed on this article it will not allow me to "like" (clicking the heart icon) the thread. May want to look into permissions or something on this.

BirdOPrey5
07-06-2011, 11:19 AM
UNRELATED: Noticed on this article it will not allow me to "like" (clicking the heart icon) the thread. May want to look into permissions or something on this.

Thanks for the info. What message were you getting exactly?

MagicThemeParks
07-06-2011, 11:24 AM
"Sorry, you are not allowed to 'Like' this post."

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

Tasking Mickey
07-06-2011, 11:31 AM
Hmm, I did everything you said Joe, from step 1 to step 4, plus I did the "The last steps are only if you want to integrate the Like box INTO the posts like on my forum."

I did everything, went to a post, clicked on my liked button to like a post, and nothing showed, the button left of course, but nothing showed below the sig or anything, even when I refresh the page.

I may of did something wrong, maybe you can diagnose what's up? lol.

BirdOPrey5
07-06-2011, 11:34 AM
Hmm, I did everything you said Joe, from step 1 to step 4, plus I did the

I did everything, went to a post, clicked on my liked button to like a post, and nothing showed, the button left of course, but nothing showed below the sig or anything, even when I refresh the page.

I may of did something wrong, maybe you can diagnose what's up? lol.

If your postbit_legacy template confirm you have the line:
$template_hook[postbit_signature_end]

In the plugin confirm you have the right hook in the eval statement : postbit_signature_end

Tasking Mickey
07-06-2011, 11:39 AM
If your postbit_legacy template confirm you have the line:
$template_hook[postbit_signature_end]

In the plugin confirm you have the right hook in the eval statement : postbit_signature_end
Yeppers, the plugin is correct, I'm checking it now

eval('$template_hook[postbit_signature_end] .= " ' . fetch_template('post_thanks_box') . '";');

That's what I have in the plugin, and this is my postbit_legacy's template.

$template_hook[postbit_start]
<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<if condition="$show['announcement']">
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]" colspan="2">
<img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_$post[statusicon].gif" alt="$post[statustitle]" border="0" />
<phrase 1="$post[startdate]" 2="$post[enddate]">$vbphrase[x_until_y]</phrase>
</td>
<else />
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-$stylevar[right]: 0px" $post[scrolltothis]>
<!-- status icon and date -->
<a name="post$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_$post[statusicon].gif" alt="$post[statustitle]" border="0" /></a>
$post[postdate]<if condition="!$show['detailedtime']">, $post[posttime]</if>
$post[firstnewinsert]
<!-- / status icon and date -->
</td>
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-$stylevar[left]: 0px" align="$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]" />
</if>
</td>
</if>
</tr>
<tr valign="top">
<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">

<div id="postmenu_$post[postid]">
<if condition="$show['profile']">
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]" $post[mh_unm_username_history]>$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>
$template_hook[postbit_userinfo_left]

<if condition="$show['avatar']">
<div class="smallfont">
&nbsp;<br /><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>

<div class="smallfont">
&nbsp;<br />
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>
$template_hook[postbit_userinfo_right_after_posts]
<if condition="$show['infraction']"><div>$vbphrase[infractions]: $post[warnings]/$post[infractions] ($post[ipoints])</div></if>
<if condition="$show['reputation']"><if condition="$show['reppower']">$vbphrase[reppower]: <span id="reppower_$post[postid]_$post[userid]">$post[reppower]</span> </if><div><span id="repdisplay_$post[postid]_$post[userid]">$post[reputationdisplay]</span></div></if>
$template_hook[postbit_userinfo_right]
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
</div>

</td>
<if condition="$show['moderated']">
<td class="alt2" id="td_post_$post[postid]" style="border-$stylevar[right]: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]">
<else />
<td class="alt1" id="td_post_$post[postid]" style="border-$stylevar[right]: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]">
</if>
$template_hook[postbit_messagearea_start]
<if condition="$show['messageicon'] OR $post['title']">
<!-- icon and title -->
<div class="smallfont">
<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>
<hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
<!-- / icon and title -->
</if>

<!-- message -->
<div id="post_message_$post[postid]">
$ad_location[ad_showthread_firstpost_start]
$post[message]
</div>
<!-- / message -->

<if condition="$show['attachments']">
<!-- 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['otherattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_files]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[otherattachments]
</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>

</div>
<!-- / attachments -->
</if>

$template_hook[postbit_signature_start]
$ad_location[ad_showthread_firstpost_sig]

<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

$template_hook[postbit_signature_end]

<if condition="$show['postedited']">
<!-- edit note -->
<div class="smallfont">
<hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
<em>
<if condition="$show['postedithistory']">
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>
<else />
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>
</if>
<if condition="$post['edit_reason']">
$vbphrase[reason]: $post[edit_reason]
</if>
</em>
</div>
<!-- / edit note -->
</if>

</td>
</tr>
<tr>
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
$post[onlinestatus]
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
<if condition="$show['popups']"><script type="text/javascript"> vbrep_register("$post[postid]")</script></if>
</if>
<if condition="$show['infractionlink']"><a href="infraction.php?$session[sessionurl]do=report&amp;p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/infraction.gif" alt="<phrase 1="$post[username]">$vbphrase[add_infraction_for_x]</phrase>" border="0" /></a></if>
<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="$vbphrase[report_bad_post]" border="0" /></a></if>
$post[iplogged]
&nbsp;
</td>
<if condition="$show['moderated']">
<td class="alt2" align="$stylevar[right]" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-$stylevar[left]: 0px; border-top: 0px">
<else />
<td class="alt1" align="$stylevar[right]" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-$stylevar[left]: 0px; border-top: 0px">
</if>
<!-- controls -->
<if condition="$post['editlink']">
<img style="display: none" id="progress_$postid" src="$stylevar[imgdir_misc]/progress.gif" alt="$vbphrase[loading_editor_please_wait]" />
<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['multiquote_post']">
<a href="$post[replylink]" rel="nofollow" onclick="return false"><img src="$stylevar[imgdir_button]/multiquote_<if condition="$show['multiquote_selected']">on<else />off</if>.gif" alt="$vbphrase[multi_quote_this_message]" border="0" id="mq_$post[postid]" /></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>
<if condition="$show['spam']">
<img src="$stylevar[imgdir_misc]/spam_detected.png" alt="$vbphrase[spam_post]" border="0" />
</if>
<if condition="$show['deletedpost']">
<if condition="$show['managepost']">
<a href="postings.php?$session[sessionurl]do=managepost&amp;p=$post[postid]"><img src="$stylevar[imgdir_misc]/trashcan.gif" alt="$vbphrase[manage]" border="0" /></a>
<else />
<img src="$stylevar[imgdir_misc]/trashcan.gif" alt="$vbphrase[deleted_post]" border="0" />
</if>
</if>
<if condition="$show['redcard']">
<a href="infraction.php?$session[sessionurl]do=view&amp;p=$post[postid]"><img src="$stylevar[imgdir_button]/redcard.gif" alt="$vbphrase[received_infraction]" border="0" /></a>
<else />
<if condition="$show['yellowcard']">
<a href="infraction.php?$session[sessionurl]do=view&amp;p=$post[postid]"><img src="$stylevar[imgdir_button]/yellowcard.gif" alt="$vbphrase[received_warning]" border="0" /></a>
</if>
</if>
$template_hook[postbit_controls]
<!-- / controls -->
</td>
</tr>
</table>
$template_hook[postbit_end]

<if condition="$show['profile']">
<!-- 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]" rel="nofollow"><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_more_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_contacts]</phrase></a></td></tr>
</if>
$template_hook[postbit_user_popup]
</table>
</div>
<!-- / post $post[postid] popup menu -->
</if>

BirdOPrey5
07-06-2011, 11:58 AM
I uninstalled my Thank You hack and re-installed following the instructions here, just in case I missed a step, but it still is working fine following these exact instructions.

Your postbit_legacy template looks fine.

I'm at a loss right now.

BirdOPrey5
07-06-2011, 12:01 PM
Did you have the Thank You mod working right before this?

Tasking Mickey
07-06-2011, 12:04 PM
Did you have the Thank You mod working right before this?
Yes, I did, it was working all great.

Let me try removing the files, and uninstalling the product, and reverting the templates, and re-following the steps to see if it'd work.

I'll let you know once I've done this, and hopefully, it'd work, because it must of been an error I caused myself.

By the way, if I revert the postbit, and postbit_legacy templates, would it delete the templates? or revert them back to the original way?

BirdOPrey5
07-06-2011, 12:11 PM
If you are in a style (NOT the Master Style) but in any installed style reverting the template will undo all customizations made to that template in that style. You wouldn't see the Master Style unless you were in debug mode.

No reason to delete the php files, those weren't changed.

Also if you uninstall the mod that will erase all the previous "thank yous" you had, I don't see any benefit to uninstalling the mod.

Just re-install the mod with "Allow Overwrite" set to YES.

Then go to your styles and revert the 2 mod templates edited above, you should be back to a stock Thank You install.

And can I have a link to your forum (PM me if you don't want to post it.)

Tasking Mickey
07-06-2011, 12:38 PM
If you are in a style (NOT the Master Style) but in any installed style reverting the template will undo all customizations made to that template in that style. You wouldn't see the Master Style unless you were in debug mode.

No reason to delete the php files, those weren't changed.

Also if you uninstall the mod that will erase all the previous "thank yous" you had, I don't see any benefit to uninstalling the mod.

Just re-install the mod with "Allow Overwrite" set to YES.

Then go to your styles and revert the 2 mod templates edited above, you should be back to a stock Thank You install.

And can I have a link to your forum (PM me if you don't want to post it.)
Oh, this is nice, before you replied, I had uninstalled anything, including the files (the agony) reverted those 2 templates, then re-uploaded the files, and imported the product, now nothing is working, great.

What should I do?

BirdOPrey5
07-06-2011, 12:48 PM
pm sent.

BCP Hung
07-06-2011, 01:56 PM
@BOP5 : It awesome ! I will do it for my board, and that is for vBulletin 4. More change I will do.

Thanks again !
--------------
P.S : I still can not like your first post !

BirdOPrey5
07-06-2011, 05:35 PM
The Like Post issue has been logged in the big tracker. It will be fixed eventually.

Note- these instructions are for VB3.x only. VB4.x will need different template edits. I don't have the VB4 like button.

BirdOPrey5
07-06-2011, 09:13 PM
OK The problem with Tasking Mickey was that he was using the standard postbit, not legacy. I updated the instructions above for use with either the regular postbit or postbit_legacy.

On the plus side it's another forum I can confirm this works on. :up:

rootsxrocks
07-07-2011, 12:46 AM
I don't see a reason to limit the likes thus farI want them to use the heck out of it.

BirdOPrey5
07-07-2011, 09:47 AM
I don't see a reason to limit the likes thus farI want them to use the heck out of it.

Not sure what that has to do with this article? The "Post Thank You" mod can be configured for unlimited thanks/liking.

tobybird
07-07-2011, 01:06 PM
First, thank you for sharing. :)

I'll test this on my test board, but thought I'd ask here first in case you might have any insight...

I'm currently running a modified version of Post Thanks similar to this. I've wanted to add a Like button to my site and was thinking of editing Post Thanks again...similar to what you have provided.

Do you think there would be any issue with, let's say... a site running (an unedited) Post Thanks and your Like system simultaneously?

TIA!

NTT
07-07-2011, 01:15 PM
@BOP5 : How can you reduce more "Likes" showing in a post like Facebook or here ?

BirdOPrey5
07-07-2011, 02:06 PM
First, thank you for sharing. :)

I'll test this on my test board, but thought I'd ask here first in case you might have any insight...

I'm currently running a modified version of Post Thanks similar to this. I've wanted to add a Like button to my site and was thinking of editing Post Thanks again...similar to what you have provided.

Do you think there would be any issue with, let's say... a site running (an unedited) Post Thanks and your Like system simultaneously?

TIA!

I would strongly suggest installing the "Post Groan Mod" also by Abe1 and turning that into a Likes system since both "Thanks" and "Groan" were made to run simultaneously.

BirdOPrey5
07-07-2011, 02:08 PM
@BOP5 : How can you reduce more "Likes" showing in a post like Facebook or here ?

It would need some custom coding- not something I've tried.

Tasking Mickey
07-07-2011, 04:22 PM
It would need some custom coding- not something I've tried.
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.

Mark.B
07-07-2011, 04:25 PM
I would strongly suggest installing the "Post Groan Mod" also by Abe1 and turning that into a Likes system since both "Thanks" and "Groan" were made to run simultaneously.

BUT don't do that if you have any designs on moving to vB4 as there is no "Groan" equivalent for vB4.

reddyink
07-07-2011, 08:55 PM
Can you please update instructions for latest version 4.1.4

I can't find template hook postbit_display_start (I have postbit_display_complete)

BirdOPrey5
07-07-2011, 09:23 PM
Can you please update instructions for latest version 4.1.4

I can't find template hook postbit_display_start (I have postbit_display_complete)

Maybe eventually but I don't normally use 4.1.4 and never even knew there was a Thank You hack for it. I've got other things on my plate right now. If/when I do I will post a notice here. If anyone else does before me feel free to post here and I'll link it in the first post.

reddyink
07-07-2011, 09:42 PM
Maybe eventually but I don't normally use 4.1.4 and never even knew there was a Thank You hack for it. I've got other things on my plate right now. If/when I do I will post a notice here. If anyone else does before me feel free to post here and I'll link it in the first post.


Please note that this will not work (properly) for vb 4.x.x versions as post thank you hack has phrase changes and plugin changes which are different from 3.8x version.
I am only making a note as you have posted on post_thanks vb4.0x version
https://vborg.vbsupport.ru/showthread.php?t=231666&page=110

example: There is no plugin with hook postbit_display_start (instead there is postbit_display_complete)

BirdOPrey5
07-07-2011, 11:30 PM
Please note that this will not work (properly) for vb 4.x.x versions as post thank you hack has phrase changes and plugin changes which are different from 3.8x version.
I am only making a note as you have posted on post_thanks vb4.0x version
https://vborg.vbsupport.ru/showthread.php?t=231666&page=110

example: There is no plugin with hook postbit_display_start (instead there is postbit_display_complete)

Oh wow... very sorry about that. I posted in the wrong thread. :o. I have deleted the post to avoid confusion.

I will take a look at the VB4 version as soon as I get a chance.

I have also updated the link and version number in this thread because it was also linking to the 4.x version.

kevin.kool
07-08-2011, 05:56 AM
I would kiss you BirdOPrey5 ;) Thank you for this article.

BirdOPrey5
07-08-2011, 04:57 PM
I would kiss you BirdOPrey5 ;) Thank you for this article.

Would probably have to pass on that Kevin :eek: but thanks.

FYI to all- Paul has reported the bug preventing the "Liking" of articles here on vb.org is fixed. :up:

reddyink
07-08-2011, 09:24 PM
Actually, pretty simple to modify this article for 4.x.x as there are just couple of phrase differences and plugin differences.


Oh wow... very sorry about that. I posted in the wrong thread. :o. I have deleted the post to avoid confusion.

I will take a look at the VB4 version as soon as I get a chance.

I have also updated the link and version number in this thread because it was also linking to the 4.x version.

tobybird
07-10-2011, 08:03 PM
I would strongly suggest installing the "Post Groan Mod" also by Abe1 and turning that into a Likes system since both "Thanks" and "Groan" were made to run simultaneously.

BUT don't do that if you have any designs on moving to vB4 as there is no "Groan" equivalent for vB4.

Thank you both :)

Post Reader
07-12-2011, 04:12 AM
looks there is a problem when somone thanx the post the page needs to refresh again and AJAX feature is not working...

BirdOPrey5
07-12-2011, 11:13 AM
looks there is a problem when somone thanx the post the page needs to refresh again and AJAX feature is not working...

AJAX is working fine for me. Was it working for you before you made the changes? What exactly is the problem?

michal72
07-18-2011, 07:10 PM
Actually, pretty simple to modify this article for 4.x.x as there are just couple of phrase differences and plugin differences.

I have modified a little bit Joe's proposal to work with vb4

Change post_thanks_box template to:

<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:
<vb:if condition="$show['postedited'] || $post['signature']">

and add before:

{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:
$template_hook['postbit_end'] .= $templater->render();

and replace with:
$template_hook['postbit_messagearea_end'] .= $templater->render();



You can also modify window's content:

In post_thanks_postbit template replace:

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

DS MrSinister
07-19-2011, 04:01 AM
Thxs michal72

I made one change.. this will place it under the signature

In the postbit_legacy i did

Find

<div class="cleardiv"></div>

Replace with.

<div class="cleardiv">{vb:raw template_hook.postbit_messagearea_end}</div>

Juggernaut
07-19-2011, 11:41 AM
With this method though, you can't see the likes in your control panel, like you can here, with vbullletin 4.

MagicThemeParks
07-19-2011, 12:47 PM
With this method though, you can't see the likes in your control panel, like you can here, with vbullletin 4.

If you select the option to work with reputation points you can.

BirdOPrey5
07-19-2011, 01:44 PM
With this method though, you can't see the likes in your control panel, like you can here, with vbullletin 4.

I see them under Statistics.

Juggernaut
07-20-2011, 12:29 AM
I see them under Statistics.
I see the total number under statistics, but not with links to the posts liked, like here on vbulletin.org, must be a limitation to that system in itself. But overall I like this implementation of the like system. :D

EDIT: Also for some reason the post thank you hack doesn't seem to be working with the reputation system, even though I've set for all likes to give all users 5 points of reputation, I don't see any reputation added with the likes. Could this be a error caused by these edits or some bug with the mod itself? I am running vbulletin 4.1.4 in my forum.

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
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
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 1311308942 at 1311308942 ---------------

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
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
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
I have modified a little bit Joe's proposal to work with vb4

Change post_thanks_box template to:

<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:
<vb:if condition="$show['postedited'] || $post['signature']">and add before:

{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:
$template_hook['postbit_end'] .= $templater->render();and replace with:
$template_hook['postbit_messagearea_end'] .= $templater->render();

You can also modify window's content:

In post_thanks_postbit template replace:

<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:
<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
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:
<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:ra w 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:r aw 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.php?p=2222087&postcount=35

Juggernaut
07-30-2011, 07:00 AM
To be able to do it, first you have to modify post_thanks_postbit template.
Please try change it to:
<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:ra w 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:r aw 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.php?p=2222087&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
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
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
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/attachment.php?attachmentid=130766&stc=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
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:

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

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 1314263167 at 1314263167 ---------------

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
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:
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:
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
"Sorry, you are not allowed to 'Like' this post."

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

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)

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)

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 1315278204 at 1315278204 ---------------

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:
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:
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 (https://vborg.vbsupport.ru/showpost.php?p=2222087&postcount=35) and Post #36 (https://vborg.vbsupport.ru/showpost.php?p=2222087&postcount=36) help you with the 4.x install instructions and alternate placement. :up:

NTMID8
09-06-2011, 03:13 AM
Post #35 (https://vborg.vbsupport.ru/showpost.php?p=2222087&postcount=35) and Post #36 (https://vborg.vbsupport.ru/showpost.php?p=2222087&postcount=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:

{vb:raw post_thanks_box}

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

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


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
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
<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
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
<!-- / 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

BirdOPrey5
01-01-2012, 09:18 PM
You have a custom style so your code will be different, you will have to figure out where things need to be. The code I provided was for the default style.

clutchthese
01-27-2012, 06:58 PM
Nevamind. :)

Crimdog
04-10-2012, 08:04 PM
nvm fixed :)

wishtheend
04-18-2012, 10:06 PM
Anyone have any luck with 4.1.12? The 4.x instructions don't seem to work anymore. The edits in this just seem to mess it up. Tried uninstalling and reinstalling but something is a little screwy.

BirdOPrey5
04-19-2012, 09:55 AM
Anyone have any luck with 4.1.12? The 4.x instructions don't seem to work anymore. The edits in this just seem to mess it up. Tried uninstalling and reinstalling but something is a little screwy.

Do you mean the edits in post #35 weren't working for you or the original edits in the first post? (The first post is of course for VB 3.x and not intended to work on 4.x.)

wishtheend
04-19-2012, 08:32 PM
Do you mean the edits in post #35 weren't working for you or the original edits in the first post? (The first post is of course for VB 3.x and not intended to work on 4.x.)Yes, installed 7.7 and went to follow the 4.x steps in post 35/36. I'm getting an error that runs across the top, or takes me to sql error page

Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: post_thanks_navbar_search in [path]/includes/functions.php on line 4337

I uninstalled it, and then reinstalled but no luck. And when I go to edit the posbit display complete hook, the text the instructions tell to replace is not even listed.

BirdOPrey5
04-19-2012, 09:49 PM
You installed or are using the VB 3.x plugin on VB 4.x. You need the VB4 version of the mod, not the VB3 version.

wishtheend
04-19-2012, 10:19 PM
Thanks. I just installed 7.8.3 and the steps in #35 seem broken still. I'm not sure why there would a discrepancy, but the first 3 steps seem broken. I follow them exact and it looks like this

Screenshot 1 (http://providermodule.com/Administrators/Cringeon/brokenlike.jpg)

It looks fine with the edits not performed, just looks like the normal white box underneath the post, but any edit doesn't seem to work. Anyone else tried it 4.1.12?

ForceHSS
04-19-2012, 11:45 PM
Thanks. I just installed 7.8.3 and the steps in #35 seem broken still. I'm not sure why there would a discrepancy, but the first 3 steps seem broken. I follow them exact and it looks like this

Screenshot 1 (http://providermodule.com/Administrators/Cringeon/brokenlike.jpg)

It looks fine with the edits not performed, just looks like the normal white box underneath the post, but any edit doesn't seem to work. Anyone else tried it 4.1.12?

this is why it does not work for you
(The first post is of course for VB 3.x and not intended to work on 4.x.)

wishtheend
04-20-2012, 02:24 AM
this is why it does not work for you
The only modifications I've made are the ones in post #35 which at least to my understanding the 4.x edits. I'm not making modifications from the first post of this thread.

--------------- Added 1334967415 at 1334967415 ---------------

Could someone post what it should look like after each edit? At least then I can maybe pinpoint where it's broken. For me, and on the default VB skin, the first edit on post #35 causes the regular thanks box to become some div that gets pushed behind the forum.

michal72
04-21-2012, 08:55 AM
For me #35 is working fine on 4.1.12 .
See how it should more less look like.
137949

Please check if post #49 will help you: https://vborg.vbsupport.ru/showpost.php?p=2226708&postcount=49

wishtheend
04-21-2012, 04:30 PM
For me #35 is working fine on 4.1.12 .
See how it should more less look like.
137949

Please check if post #49 will help you: https://vborg.vbsupport.ru/showpost.php?p=2226708&postcount=49
Thanks, probably still seems to lie with the first edit in #35. The thank box code is says to place in there seems to mess up the formatting. I've tried it from a fresh install of 4.1.12 so not sure where the problem is. But making the first two edits causes the formatting to become all jumbled and bleeding into other parts of a post like the message body.

Merriweather
04-21-2012, 08:18 PM
Thanks to everyone who took the time to post their knowledge in this thread. I just got my vB 4.1.12 working with the hacked "Likes" system pretty easily. :)

However, I use this Lightweight style for mobile device users: https://vborg.vbsupport.ru/showthread.php?t=249277

So far, I've added the "Like" button in between the "Edit" and "Reply" on my mobile style, like this:

<vb:if condition="$post['editlink']"><a id="btn" href="{vb:raw post.editlink}">{vb:rawphrase edit}</a></vb:if>

<!-- Add "Like" button to mobile style -->
<a id="btn" href="post_thanks.php?{vb:raw session.sessionurl}do=post_thanks_add&amp;p={vb:raw post.postid}&amp;securitytoken={vb:raw bbuserinfo.securitytoken}">{vb:rawphrase post_thanks_thanks}</a>
<!-- End adding "Like" button -->

<vb:if condition="$post['replylink']"><a id="btn" href="{vb:raw post.replylink}" id="qrwq_{vb:raw post.postid}" rel="nofollow">{vb:rawphrase reply}</a></vb:if>

Basically, all I need are the conditionals to wrap around it so it won't show to users who don't have access to the post. I've been trying (without success) to create my own conditionals.

itilm
04-23-2012, 11:03 AM
Step 2 is to change the following phrases. In Admin CP use Phrase Manager to "translate" these phrases from "Thank You" to "Like(s)":

Please Explain this step on screen shot for me please

BirdOPrey5
04-23-2012, 09:07 PM
Step 2 is to change the following phrases. In Admin CP use Phrase Manager to "translate" these phrases from "Thank You" to "Like(s)":

Please Explain this step on screen shot for me please

In your Admin CP choose "Phrase Manager" from the side menu, it is under the "Languages & Phrases" group.

If you're noy sure where each phrase is use "Search in Phrases" instead. Put the phrase name in the "Search for Text" box, example: post_thanks_already

Choose the option: Phrase Variable Name Only

click find.

Click to edit the found phrase and on that page there is a box for an English translation (or whatever language you use) - Simply put in that box what you want it to say... So change "Thanks" to "Like"

Save.

Repeat for all phrases listed.

Crimdog
04-23-2012, 09:38 PM
Loving this modification to the post thanks hack!

Working great.

I do have a question for you, if you don't mind pointing me in the right direction?

We use a star to like posts up next to the permalink. I'd like to have this button used as a "multi" button. In that when not liked, it's grayed (not yellow). Once you click "like" it changes to yellow. The text "remove like" would also be removed from the thanks box.

I've been digging around for a while with this conditional and haven't had any luck. Could you point me in the right direction so I could do the research? Much appreciated!

BirdOPrey5
04-23-2012, 10:24 PM
Sorry swapping out images would likely involve editing the Ajax JavaScript and that is not something I am familiar with.

Crimdog
04-25-2012, 10:14 PM
Sorry swapping out images would likely involve editing the Ajax JavaScript and that is not something I am familiar with.

Thank you for the response.

I intend to go about this a different way :)

If possible, please review this:
<!--Post Thanks Button-->
<!--Post Thanks Button-->
<a href="post_thanks.php?$session[sessionurl]do=post_thanks_add&amp;p=$post[postid]&amp;securitytoken=$bbuserinfo[securitytoken]" id="post_thanks_button_$post[postid]"
<if condition="$vboptions[disable_ajax] != 2"> onclick="return post_thanks_give($post[postid],
<if condition="$vboptions[post_groan_integrate]">true<else />false</if>);"</if>
<if condition="$display_thanks_image == 'none'">style="display:none"</if> rel="nofollow">
<img src="$stylevar[imgdir_button]/post_like.png" alt="Like This Post" align="center" border="0" /></a>

<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>
<if condition="$display_thanks_image == ''">style="display:none"</if> rel="nofollow">
<img src="$stylevar[imgdir_button]/post_liked.png" alt="Unlike This Post" align="center" border="0" /></a>
</if>
<!--/Post Thanks Button-->

In testing this out, I've managed to get the images to display correctly to an extent. When you click the image, the image disappears, but the other image doesn't display until you refresh the page. When you refresh the page it looks fine again. Now, if you click "unlike this post", ajax refreshes immediately and you now have two images in the bar next to permalink (like and liked.png respectively) until you refresh the page.

I assume this is what you meant by the ajax function?

--------------- Added 1335397299 at 1335397299 ---------------

And apologies in advance, no matter what I do, copy/paste doesn't fully translate.

BirdOPrey5
04-26-2012, 11:52 AM
The only work-around I could think of would be to disable AJAX in the mod completely which I don't think you'd want to do.

Crimdog
04-26-2012, 11:58 AM
The only work-around I could think of would be to disable AJAX in the mod completely which I don't think you'd want to do.

Yeah, that would in turn prevent the images from auto-display, which kinda defeats the purpose. :) Thanks anyway. I've got a co-worker that will assist since she writes AJAX in her sleep.

If we come up with a solution I'll be happy to let you know. Maybe someone else out there would be interested.

blueperspective
04-28-2012, 08:39 PM
Is there anyone who installed/tested this thing on VB 4.1.12 ? Does it work ?

Ummm... nope, doesn't.

Maybe vB should integrate in its own code a thanks/likes option.

Merriweather
04-29-2012, 11:50 PM
Is there anyone who installed/tested this thing on VB 4.1.12 ? Does it work ?

Ummm... nope, doesn't.

Maybe vB should integrate in its own code a thanks/likes option.
It does work if you install the right version of the mod and follow the additional info added within this thread. :)

yamahapaul
07-27-2012, 10:12 AM
I've updated to the latest version and would simply like to move the box into the post. On 3.8 you can do this by simply following this step

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:

eval('$template_hook[postbit_end] .= " ' . fetch_template('post_thanks_box') . '";');

and change it to:

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.

Again this is a good place to stop if you are happy.

I've gone through all the things for the 4.x change as seen here
Post #35 (https://vborg.vbsupport.ru/showpost.php?p=2222087&postcount=35) and Post #36 (https://vborg.vbsupport.ru/showpost.php?p=2222087&postcount=36) help you with the 4.x install instructions and alternate placement. :up:

but still can't figure it out for the postbit template (not legacy), anyone got any suggestions??

AndrewSimm
08-16-2012, 03:24 PM
We have found a way to get it to say "and XX others" like .org does?

Beckenbauer
08-23-2012, 12:28 PM
I don't have space between the usernames. Only a comma. (vB 4.2.0)
Where ist the error?

post_thanks_postbit
<div style="font-size:11px;">
<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>
{vb:raw post.post_thanks_bit}
</div>

BirdOPrey5
08-26-2012, 02:14 PM
Add tis code after each comma: &nbsp;

That will force a space.

Beckenbauer
08-26-2012, 02:40 PM
I don't have space between the usernames. Only a comma. (vB 4.2.0)
Where ist the error?

post_thanks_postbit
<div style="font-size:11px;">
<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>
{vb:raw post.post_thanks_bit}
</div>

After this commas don't works.

BirdOPrey5
08-26-2012, 03:07 PM
Link to a post on your site with multiple thanks (or likes)?

BirdOPrey5
08-26-2012, 03:47 PM
sorry not after the commas, nevermind. It's different code somewhere else, I don't know off hand.

Beckenbauer
08-28-2012, 09:56 PM
sorry not after the commas,

After only this line:


Code:
---------
{vb:raw post.post_thanks_bit}
---------
So make it


Code:
---------
{vb:raw post.post_thanks_bit} &nbsp;
---------

***************

This code also don't works.

BirdOPrey5
08-29-2012, 10:25 PM
Then I don't know.

McGyver
09-21-2012, 04:41 AM
This code also don't works.

I think you need to fix the functions_post_thanks.php file.

Find the following in function fetch_thanks_bit (around line 218).

if ($cmpt<$number_rows)
{
$virg=",";
}


Add a space after the comma in the quotes and it should do the trick...

Beckenbauer
09-21-2012, 11:47 PM
I think you need to fix the functions_post_thanks.php file.

Find the following in function fetch_thanks_bit (around line 218).

if ($cmpt<$number_rows)
{
$virg=",";
}


Add a space after the comma in the quotes and it should do the trick...

You are a genius! Thx!

abbyxelizabeth
11-05-2012, 03:41 AM
Parse error: syntax error, unexpected $end in /home/feathert/public_html/includes/class_postbit.php(345) : eval()'d code on line 52

This is the error I've gotten. How do I fix it? Any ideas?

BirdOPrey5
11-10-2012, 08:17 PM
There is likely a typo in your postbit_display_start or postbit_display_complete plugin- if you can't find the error you could always reinstall the thank you mod but you will lose all customization.

MrSeth
11-12-2012, 01:29 AM
Install went great thanks for everyone's input.

I would like to ask for some help on these two things..

1. removing the white space in the like box.

2. How to move the Like button to the left of or in between the "reply" or "Reply with quote"

https://vborg.vbsupport.ru/

MrSeth
11-18-2012, 04:53 AM
Install went great thanks for everyone's input.

I would like to ask for some help on these two things..

1. removing the white space in the like box.

2. How to move the Like button to the left of or in between the "reply" or "Reply with quote"

https://vborg.vbsupport.ru/

Anychance I can get some help on this?

TinCow1
11-19-2012, 01:06 PM
I'm having a formatting error that I can't figure out. Everything displays properly, with one exception. For posts with more than 6 Thanks, the list of Thanks (which is hidden behind a toggle-able spoiler-style box) no longer displays for a person who has Thanked that post. It displays perfectly fine if you haven't thanked, but once you add yourself to the list clicking the toggle button does nothing. What am I doing wrong?

<div class="postbody"<vb:if condition="$vboptions['legacypostbit']"> style="margin-{vb:stylevar left}: 0; border-left: 0px"</vb:if>>
<div class="postrow">
<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:ra w 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:r aw 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>
<vb:if condition="!$vboptions['legacypostbit']">post</vb:if>
<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>

<vb:if condition="$post['post_thanks_amount'] > 6">

<div class="smallfont" style="margin-bottom:0px"> <input type="button" value="Show List" style="width:60px;font-size:10px;margin:0px;padding:0px;float:left" onclick="if (this.parentNode.parentNode.getElementsByTagName(' div')[1].getElementsByTagName('div')[0].style.display
!= '') {this.parentNode.parentNode.getElementsByTagName(' div')[1].getElementsByTagName('div')[0].style.display
= '';this.innerText = ''; this.value = 'Hide List'; } else {this.parentNode.parentNode.getElementsByTagName(' div')[1].getElementsByTagName('div')[0].style.display
= 'none'; this.innerText = ''; this.value = 'Show List'; }"> </div><div class="alt1"><div style="display: none;"> &nbsp; {vb:raw post.post_thanks_bit}
</div></div>

<vb:else />
<span id="thanks">
<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>
</span>
</vb:if>

</div>
</div>
<hr />

bluidkiti
01-05-2013, 05:51 PM
I love this. I have been looking for something like this a long time. Thank you! :)

Foxtrotelite
01-06-2013, 12:07 AM
How can I move the like box into the post for 4.2? I have tried a couple code edits, but can't get it to work. I'm not sure if I'm just missing something simple or what.

Also, does anyone have a link to where I can have each "like" notify the poster his post was liked?

Glynn58
02-03-2013, 08:52 AM
Thank you really chuffed with this.....

Raptor
02-23-2013, 01:44 AM
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. ;)

any clues how to get this template edit working with vb 4.2 ?

https://vborg.vbsupport.ru/showpost.php?p=2264797&postcount=1948

smirkley
03-04-2013, 02:43 AM
How can I move the like box into the post for 4.2? I have tried a couple code edits, but can't get it to work. I'm not sure if I'm just missing something simple or what.

Seconded !!


Nevermind,... FOUND IT !!
https://vborg.vbsupport.ru/showpost.php?p=2264797&postcount=1948

--------------- Added 1362454549 at 1362454549 ---------------

OK, have this looking great now inside my post box above the signature area.

Does anybody know of how I can force it down to the bottom to reside just above my siggy area? Just doesnt look right located all the way up under the post text, with a big space below between the siggy.

smirkley
03-05-2013, 03:16 AM
OK,..figured out how to force to bottom of post box right above siggy,.. in postbit legacy template

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

add above
<div class="after_content">{vb:raw template_hook.postbit_messagearea_end}</div>

Of course it still shows up just above edit statement if applicable, but I rather have the box on the bottom but above siggy area. This was the easiest way for me.

--------------- Added 1362527876 at 1362527876 ---------------

Install went great thanks for everyone's input.

I would like to ask for some help on these two things..

1. removing the white space in the like box.



http://ilovesmallies.com/likehelp.jpg

Me too. I have dug n dug and cant resolve this white space issue either.

Armee25
03-06-2013, 05:07 PM
I'd like to get an answer to the white space issue mentioned above please :)

Armee25
03-09-2013, 12:50 AM
Please? :) anyone?

Simon Lloyd
03-10-2013, 12:43 PM
Have you turned on the template naming in general options in admincp and then looked at the sorce code to see what is being used there?, it could be a <br /> tag or padding...etc in css.

edgeless
03-12-2013, 08:16 PM
My version is 4.2.0. The Post Thank You Hack version is 7.8.4. I have not changed "Thanks" to "Like", but I've been trying to get the Thanks box to appear inside of the post bodies. I've however only succeeded in getting it to disappear completely. When I reverse my code changes the box reappears but it's of course not within the post bodies. It's back between the posts, since everything has been reverted.

I'd very much appreciate it if someone could tell me where I'm going wrong. Below are the changes I've been making, after which the box just goes away.

I change the contents of post_thanks_box to:

<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 postbit_display_complete I change this:

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


to this:

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


and in postpit_legacy I change this:

<div class="postbody">
<div class="postrow<vb:if condition="$show['postedited'] || $post['signature']"> has_after_content</vb:if>">
{vb:raw template_hook.postbit_messagearea_start}
<vb:if condition="$post['title'] OR $show['messageicon']">
<h2 class="title icon">
<vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
</h2>
</vb:if>


to this:

<div class="postbody">
{vb:raw template_hook.postbit_messagearea_start}
<div class="postrow<vb:if condition="$show['postedited'] || $post['signature']"> has_after_content</vb:if>">
<vb:if condition="$post['title'] OR $show['messageicon']">
<h2 class="title icon">
<vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
</h2>
</vb:if>


And there's apparently no postbit_display_start in this version so I can't modify that.

But why am I not able to move the box into the post body? What am I missing?

Thanks in advance.

edgeless
03-15-2013, 06:42 PM
It would be very nice if someone could provide an adaptation of the modifications herein to function on version 4.2.0, both for the 'thanks' to 'likes' part and for the migration of the thanks/likes box into the message body part. The code within some of the 4.2.0 templates is apparently different from that in previous releases of version 4.

Edit: As far as changing 'Thanks' to 'Likes', it seems that simply doing the phrase search and replace for each of the named phrases in post #1, in addition to changing post_thanks_thanks from 'Thanks' to 'Like' (for the button label), did the trick for me. I only hope I'm not going to experience any complications without having done anything else. One problem I've already noticed is that the 'Thanks' stats field is now labeled 'Like' as opposed to 'Likes'. But if I change the text in the post_thanks_thanks phrase to 'Likes', then the button label also changes to 'Likes' when it should be 'Like'.

Addendum: I've fixed it. I just created a post_thanks_like phrase containing the text 'Like' and then changed the post_thanks_thanks reference (in the post_thanks_button template) to post_thanks_like. Next, I changed the text in post_thanks_thanks back to 'Likes' and everything now displays correctly.

uninvited13th
04-05-2013, 09:10 AM
Possible??

The following members like this post: member1, member2, member3, member4, member5 and 36 others.

and when the "36 others" is clicked, it will expand with ajax..

Max Taxable
10-19-2013, 05:02 PM
After much study and trepidation, I partially installed this. I was afraid to go the full monty and kept the phrases as they were, and also did not do the template modifications to postbit_legacy since mine is highly modified as it is and I didn't want to take a chance on messing it up.

I also kept the same thanks buttons, opting to point to those instead of new images for the "like" button.

Installed this way in three of my most used styles - looks great, works great and really cleans up postbit compared to the standard way this was handled in the original "post thanks" Mod.

Thanks BoP5!

Black Snow
10-30-2013, 03:28 PM
I have already done all of this on vB 4.2.0. All "Thanks" phrases changed to "Likes" and the thanks box inside the post at the bottom. It is simple and pretty straight forward.

--------------- Added 1383147381 at 1383147381 ---------------


In postbit_display_complete I change this:

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


to this:

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


and in postpit_legacy I change this:

<div class="postbody">
<div class="postrow<vb:if condition="$show['postedited'] || $post['signature']"> has_after_content</vb:if>">
{vb:raw template_hook.postbit_messagearea_start}
<vb:if condition="$post['title'] OR $show['messageicon']">
<h2 class="title icon">
<vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
</h2>
</vb:if>


to this:

<div class="postbody">
{vb:raw template_hook.postbit_messagearea_start}
<div class="postrow<vb:if condition="$show['postedited'] || $post['signature']"> has_after_content</vb:if>">
<vb:if condition="$post['title'] OR $show['messageicon']">
<h2 class="title icon">
<vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
</h2>
</vb:if>


And there's apparently no postbit_display_start in this version so I can't modify that.

But why am I not able to move the box into the post body? What am I missing?

Thanks in advance.

Lulz, run a quick search in your postbit_legacy for "postbit_messagearea_end". You will see that you have not added this to your postbit_legacy template:
{vb:raw template_hook.postbit_messagearea_end}
That would be why the box disappears :p

Max Taxable
11-06-2013, 02:01 AM
I went the rest of the way - everything except changing the phrases. It's excellent, really classes up the postbit.


https://vborg.vbsupport.ru/external/2013/11/20.jpg

Black Snow
11-08-2013, 05:53 PM
Nice Max. Want to share your templates for others? Looks like you done a better job than I did.

Max Taxable
11-08-2013, 06:04 PM
Nice Max. Want to share your templates for others? Looks like you done a better job than I did.Thanks but, I just followed Bop5's instructions to the letter, except for changing the phrases.

I was afraid to edit "postbit_legacy" because mine is highly customized, with the collapsible "Additional Info" bar that hides user stats and reputation - stolen from the native vBulletin "forum rules" bit and repurposed... Plus alot of other little tweaks here and there. But saving the entire template in a text file gave me the confidence that I could readily revert any bad changes.

There's a good version of that collapsible feature HERE (https://vborg.vbsupport.ru/showthread.php?t=218587) if you want to look it over and maybe try it. I had repurposed the native bit for my use, before finding this one.

Max Taxable
11-11-2013, 11:12 AM
Nice Max. Want to share your templates for others? Looks like you done a better job than I did.Here it is in another highly customized style:

https://vborg.vbsupport.ru/external/2013/11/12.jpg


The "thumbs up" icon is the "Like" button.

Max Taxable
11-13-2013, 04:37 PM
However there is one more template edit I did to keep the Like Box inside the post but at the very bottom of it regardless how short the post might be. In this case we must edit the postbit_legacy template.

Find in postbit_legacy:

<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">

Change it to:

<td class="alt2" rowspan="2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">

Find:

$template_hook[postbit_signature_end]

And delete it.

Find:

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

</td>
</tr>


Add BELOW it:

<tr>
<td class="alt1" valign="bottom">
$template_hook[postbit_signature_end]
</td>
</tr>

----

And that should do it.I have tried and tried, and I cannot make this part of it work with one of my custom styles. Here is the offending postbit_legacy template:

$template_hook[postbit_start]
<div class="forbg">
<div class="forlp">
<div class="forrp">
<div style="float:right;padding:6px 120px 0 0;" $post[scrolltothis]><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]" /></if> </div>

<div class="fortitels"> <!-- status icon and date -->
<img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_$post[statusicon].gif" alt="$post[statustitle]" border="0" />
$post[postdate]<if condition="!$show['detailedtime']">, $post[posttime]</if>
$post[firstnewinsert]
<!-- / status icon and date --> </div>
</div>
</div>
</div>
<div class="c_pborder_left">
<div class="c_pborder_right">



<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr valign="top">
<td class="alt2" width="175" style="background: url('/designs/radio/pbg.gif');">
<a name="post$post[postid]"> </a>
<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>
$template_hook[postbit_userinfo_left]
<if condition="$show['avatar'] AND $show['member']">
<div class="smallfont">
&nbsp;<br /><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>

<div class="smallfont">
&nbsp;<br /><table class="tborder" cellspacing="1" border="0" width="100%">
<tbody>
<tr>
<td class="thead">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapseuserinfo('postbit_legacy_userinfo<if condition="THIS_SCRIPT=='showthread' OR THIS_SCRIPT=='showpost'">$post[postcount]<else />99</if>')"><img id="collapseimg_postbit_legacy_userinfo<if condition="THIS_SCRIPT=='showthread' OR THIS_SCRIPT=='showpost'">$post[postcount]<else />99</if>"src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_postbit_legacy_userinfo].gif" alt="" border="0"/></a>$vbphrase[collapse_postbit]
</td>
</tr>
</tbody>
<tbody id="collapseobj_postbit_legacy_userinfo<if condition="THIS_SCRIPT=='showthread' OR THIS_SCRIPT=='showpost'">$post[postcount]<else />99</if>" style="$vbcollapse[collapseobj_postbit_legacy_userinfo]"><tr><td class="alt2">
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>$template_hook[postbit_userinfo_right_after_posts]
<if condition="$show['infraction']"><div>$vbphrase[infractions]: $post[warnings]/$post[infractions] ($post[ipoints])</div></if>
<if condition="$show['reputation']"><div><if condition="$show['reppower']">$vbphrase[reppower]: <span id="reppower_$post[postid]_$post[userid]">$post[reppower]</span> </if><span id="repdisplay_$post[postid]_$post[userid]">$post[reputationdisplay]</span></div></if>
$template_hook[postbit_userinfo_right]
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div></td></tr></tbody></table>
</div>

</td>
<if condition="$show['moderated']">
<td class="alt2" id="td_post_$post[postid]">
<else />
<td class="alt1" id="td_post_$post[postid]">
</if>
$template_hook[postbit_messagearea_start]
<if condition="$show['messageicon'] OR $post['title']">
<!-- icon and title -->
<div class="smallfont">
<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>
<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<!-- / icon and title -->
</if>

<!-- message -->
<div id="post_message_$post[postid]">$ad_location[ad_showthread_firstpost_start] $post[message]</div>
<!-- / message -->

<if condition="$show['attachments']">
<!-- 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['otherattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_files]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[otherattachments]
</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>

</div>
<!-- / attachments -->
</if>

$template_hook[postbit_signature_start]
<if condition="$post['signature'] AND !$vboptions['shownsigs'][$post[userid]] AND $vboptions['shownsigs'][$post[userid]] = true">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

$template_hook[postbit_signature_end]
<if condition="$show['postedited']">
<!-- edit note -->
<div class="smallfont">
<hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
<em>
<if condition="$show['postedithistory']">
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>
<else />
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>
</if>
<if condition="$post['edit_reason']">
$vbphrase[reason]: $post[edit_reason]
</if>
</em>
</div>
<!-- / edit note -->
</if>

</td>
</tr>
<tr>
<td class="alt2" width="175" style="background: url('/designs/radio/pbg.gif');">

<if condition="$show['infractionlink']"><a href="infraction.php?$session[sessionurl]do=report&amp;p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/infraction.gif" alt="<phrase 1="$post[username]">$vbphrase[add_infraction_for_x]</phrase>" border="0" /></a></if>

<if condition="$show['moderated']">
<td class="alt2" align="$stylevar[right]" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-$stylevar[left]: 0px; border-top: 0px">
<else />
<td class="alt1" align="$stylevar[right]" >
</if>
<!-- controls -->
<if condition="$post['editlink']">
<img style="display: none" id="progress_$postid" src="$stylevar[imgdir_misc]/progress.gif" alt="$vbphrase[loading_editor_please_wait]" /> </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="$show['moderated']">
<img src="$stylevar[imgdir_misc]/moderated.gif" alt="$vbphrase[moderated_post]" border="0" />
</if>
<if condition="$show['spam']">
<img src="$stylevar[imgdir_misc]/spam_detected.png" alt="$vbphrase[spam_post]" border="0" />
</if>
<if condition="$show['deletedpost']">
<if condition="$show['managepost']">
<a href="postings.php?$session[sessionurl]do=managepost&amp;p=$post[postid]"><img src="$stylevar[imgdir_misc]/trashcan.gif" alt="$vbphrase[manage]" border="0" /></a>
<else />
<img src="$stylevar[imgdir_misc]/trashcan.gif" alt="$vbphrase[deleted_post]" border="0" />
</if>
</if>

<if condition="$show['redcard']">
<a href="infraction.php?$session[sessionurl]do=view&amp;p=$post[postid]"><img src="$stylevar[imgdir_button]/redcard.gif" alt="$vbphrase[received_infraction]" border="0" /></a>
<else />
<if condition="$show['yellowcard']">
<a href="infraction.php?$session[sessionurl]do=view&amp;p=$post[postid]"><img src="$stylevar[imgdir_button]/yellowcard.gif" alt="$vbphrase[received_warning]" border="0" /></a>
</if>
</if>$template_hook[postbit_controls]
<!-- / controls -->
</td>
</tr>
</table>$template_hook[postbit_end]

</div></div>
<div class="posb_t_bg">
<div class="posb_t_right"><a href="$post[replylink]" rel="nofollow" id="qr_$post[postid]" onclick="return false" title="$vbphrase[quick_reply_to_this_message]"><span>$vbphrase[quick_reply_to_this_message]</span></a></div>
<div class="posb_t_left"></div>
</div>
<div class="posb_b_bg"><div class="posb_b_7"></div><if condition="$show['reportlink']"><div class="posb_b_6"><a href="report.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img src="$stylevar[imgdir_button]/report.gif" alt="$vbphrase[report_bad_post]" border="0" /></a></div></if><if condition="$show['reputationlink']"><div class="posb_b_5"><span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span></div><if condition="$show['popups']"><script type="text/javascript"> vbrep_register("$post[postid]")</script></if></if><if condition="$show['multiquote_post']"><div class="posb_b_5"><a href="$post[replylink]" rel="nofollow" onclick="return false"><img src="$stylevar[imgdir_button]/multiquote_<if condition="$show['multiquote_selected']">on<else />off</if>.gif" alt="$vbphrase[multi_quote_this_message]" border="0" id="mq_$post[postid]" /></a></div></if><div class="posb_b_5"><a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">quote<else />quote</if>.jpg" alt="$vbphrase[reply_with_quote]" border="0" /></a></div><if condition="$post['editlink']"><div class="posb_b_4"><a href="$post[editlink]" name="vB::QuickEdit::$post[postid]"><img src="$stylevar[imgdir_button]/edit.gif" alt="$vbphrase[edit_delete_message]" border="0" /></a></div></if><div class="posb_b_1"></div><div class="posb_b_11"></div><div class="posb_b_2">$post[onlinestatus]</div><div class="posb_b_3">$post[iplogged]</div></div>
<if condition="$post['forwardlink']">
<a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a>
</if>
<!-- 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]" rel="nofollow"><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_more_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_contacts]</phrase></a></td></tr>
</if> $template_hook[postbit_user_popup]
</table>
</div>
<!-- / post $post[postid] popup menu -->

--------------- Added 1384396527 at 1384396527 ---------------

Well... With about two hours of help from ozzy47... It's clear this cannot be done with my postbit_legacy template. Thank you ozzy for the great effort though.

Max Taxable
12-03-2013, 01:14 AM
Per Ozzy47 however - he solved another issue this has with Firefox browser and styles that use border pinstriping for the posts? The edit to postbit_legacy was breaking the border, as in the image below where you see the cursor and in the post above. This break does not appear however in chrome or even IE.

https://vborg.vbsupport.ru/external/2013/12/45.jpg

To fix this

Find in postbit_legacy:

<tr>
<td class="alt1" valign="bottom">
$template_hook[postbit_signature_end]
</td>
</tr>

Replace with:

<tr>
<td class="alt1" valign="bottom" style="border-right: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
$template_hook[postbit_signature_end]
</td>
</tr>

Kudos and much thanks to ozzy47 for fixing this.

Protonus
04-21-2014, 09:43 PM
Hi, I have a fairly vanilla (no real hacks/mods installed right now) install of vB 4.2.2 PL1. It uses default / official styles. We have never had a likes / thanks system installed.

I want to end up with a Like system (not thanks), that works with Tapatalk. It looks like this hack in this thread, is the way to go, but I was hoping for a bit more guidance from someone familiar with this variant?

The OP links to the latest version of the "Post Thanks" mod, but it's the one for vB 3.x.

There is a 4.x version, here: https://vborg.vbsupport.ru/showthread.php?t=231666
But in that OP they note it's not current for the latest version of vB 4.x.

So they link to these two posts, which have unofficial versions of the Post Thanks mod:
https://vborg.vbsupport.ru/showpost.php?p=2264681&postcount=1941
and https://vborg.vbsupport.ru/showthread.php?p=2249550#post2249550

I want to try and keep this as simple as possible. When we were vB 3.x we were using custom / premium Styles, along with lots of mods and hacks, and our code became very spaghetti and was absolute hell to try and keep up to date when vB updated, and trace problems, etc.

What is the best package to install, for this mod, for Post thanks, for vB 4.2.2? Simplest/easiest? Is there a master list of instructions for current vB version anywhere?

I appreciate any assistance in advance.

blind-eddie
06-06-2014, 11:20 AM
Has anyone had success at getting this show on the "postbit" template using FF?
Shows without issue on postbit_legacy using FF.

I have tried a few changes without luck.
Would you mind sharing what you did to get this to show on postbit using FF.

--------------- Added 1402058347 at 1402058347 ---------------

Never mind.... It was an issue with a custom template... fixed

arrarrgee
06-08-2014, 03:50 AM
Is there any way I could not show the usernames of all who have thanked..and instead just show the number of people who liked it.....ex: 6 liked this
could someone help me with this pls
Thx in advance
arr

Black Snow
06-11-2014, 05:57 PM
Here is my custom "Like" box.

twista46
08-24-2014, 07:33 PM
@Black Snow Please Share your Like Box

yamahapaul
08-25-2014, 04:27 AM
@Black Snow Please Share your Like Box

+1


:D

Black Snow
08-26-2014, 07:55 AM
@Black Snow Please Share your Like Box

+1


:D
I would but it took a while to make and I'm wanting to keep it just on my forum. I could maybe make something similar and share that?....

twista46
08-26-2014, 08:28 AM
Okay very nice

Max Taxable
08-26-2014, 06:27 PM
I would but it took a while to make and I'm wanting to keep it just on my forum. I could maybe make something similar and share that?....Glad I was able to inspire you.

oldengine
10-24-2014, 01:25 AM
How come there are "Likes" on this forum, but I don't see a "like" button?

Duh! Thanks tbworld. I totally overlooked that area.

tbworld
10-24-2014, 02:21 AM
On the right of the screen on every post there is a heart in the message header. Click the heart icon. :)

e24h
05-26-2015, 06:35 AM
have totally re installed the product but will try again now... let me do this, i'll get back to you... thank you

StoppingTime
07-15-2015, 02:00 AM
Has anyone been able to integrate this hack with vB's notification system? So for example, every time a user receives a "thanks" or "thumbs up" they'd receive a notification just like they would if they received, say, a VM? If so, how was this accomplished?

blind-eddie
07-15-2015, 02:24 AM
Here ya go....

https://vborg.vbsupport.ru/showthread.php?t=279907

StoppingTime
07-16-2015, 12:35 AM
Here ya go....

https://vborg.vbsupport.ru/showthread.php?t=279907

Thank you very much, this was just what I was looking for

sv1cec
09-07-2015, 06:30 AM
OK, maybe I am a little late in this, but I've installed it, like it but I can't make the box move inside the post area, no matter what I tried.

I can make it move inside but:

- If I put it below the signature, then all the buttons at the bottom of the post get mangled.
- If I put it above the signature, the signature doesn't show and the buttons get mangled again.
- If I put it above the post, everything disappears, and the buttons get screwed up again.

I am using vB 4.2.2 and the postbit (not postbit_legacy) template.

Ideas?

--------------- Added 1441621426 at 1441621426 ---------------

OK, I've managed to solve the issue I had with this hack, or at least, I've managed to move the statistics box inside the postbit area, below the signature. The offending part, was the post_thanks_box template. As it was, when I installed the hack, it looked like this:


<li class="postbit<vb:if condition="$vboptions['legacypostbit']">legacy</vb:if> postbitim" id="post_thanks_box_{vb:raw post.postid}"<vb:if condition="!$post_thanks_box == 1"> style="display:none"</vb:if>>
{vb:raw post_thanks_box}
</li>


I changed the li and /li to div and the problem of screwing up the buttons at the end of the post disappeared. So, here is what you have to do, to move the info box inside postbit.

1. Change your post_thanks_box template, to:


<div class="postbit<vb:if condition="$vboptions['legacypostbit']">legacy</vb:if> postbitim" id="post_thanks_box_{vb:raw post.postid}"<vb:if condition="!$post_thanks_box == 1"> style="display:none"</vb:if>>
{vb:raw post_thanks_box}
</div>


2. Change the plugin postbit_display_complete in the Plugins manager to:


require_once(DIR . '/includes/functions_post_thanks.php');

if (!(defined('LOCATION_BYPASS')) && !(post_thanks_off($this->thread['forumid'], $this->post, $this->thread['firstpostid'], THIS_SCRIPT)))
{
global $ids;

$thanks = fetch_thanks($this->post['postid'], $ids);

if (thanked_already($this->post) && $this->registry->options[post_thanks_delete_own])
{
$this->post['show_thanks_remove_option'] = true;
}

if ($this->post['post_thanks_amount'] > 0 && $this->thread['isdeleted'] == 0)
{
$this->post['post_thanks_bit'] = fetch_thanks_bit($this->thread['forumid'], $thanks);
$this->post['post_thanks_user'] = $post_thanks_user;
$this->post['post_thanks_amount_formatted'] = vb_number_format($this->post['post_thanks_amount']);

$post_thanks_box = fetch_post_thanks_template($this->post);
}

$templater = vB_Template::create('post_thanks_box');
$templater->register('post', $post);
$templater->register('post_thanks_box', $post_thanks_box);
$template_hook['postbit_signature_end'] .= $templater->render();
}

if ($this->registry->userinfo['userid'] != 0 && !(defined('LOCATION_BYPASS')) && !(post_thanks_off($thread['forumid'], $post, $thread['firstpostid'], THIS_SCRIPT)))
{
$display_thanks_image = 'none';

if (can_thank_this_post($post, $thread['isdeleted']) && !thanked_already($post))
{
$display_thanks_image = '';
}

$templater = vB_Template::create('post_thanks_button');
$templater->register('post', $post);
$templater->register('display_thanks_image', $display_thanks_image);
$template_hook['postbit_controls'] .= $templater->render();
}

if ($this->registry->options['post_thanks_show_stats_postbit'])
{
$post['post_thanks_user_amount_formatted'] = vb_number_format($post['post_thanks_user_amount']);
$post['post_thanks_thanked_times_formatted'] = vb_number_format($post['post_thanks_thanked_times']);
$post['post_thanks_thanked_posts_formatted'] = vb_number_format($post['post_thanks_thanked_posts']);

$templater = vB_Template::create('post_thanks_postbit_info');
$templater->register('post', $post);
$template_hook['postbit_userinfo_right_after_posts'] .= $templater->render();
}


3. You may try using the post_thanks_postbit, the way I changed it, to better fit the postbit template:


<div style="background-color: #E1E4F3; border: 2px ridge #7BBA99; ; border-width: 2px 2px 2px 2px; padding: 2px; width:100%; margin: 0px auto 0px auto; margin-top:auto; margin-bottom:0px;">

<table border="0" width="100%">
<tr>
<td width="100">
<strong><b>Likes ($post[post_thanks_amount_formatted]) :</b></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>
<br />


I also cleaned up a little the way the "Likes" information is displayed in the user profile. While it is not the perfect way to do it (I should have created more phrases etc), again, as it is, it serves me fine, so I am posting it here.


<h5 class="subsubsectionhead">{vb:rawphrase post_thanks_total_thanks}</h5>
<dl class="stats">
<dt>{vb:rawphrase post_thanks_total_thanks} given</dt>
<dd>{vb:raw userinfo.post_thanks_user_amount_formatted} -- <a href="post_thanks.php?{vb:raw session.sessionurl}do=findthanks_user_gave&amp;u={vb:r aw userinfo.userid}">{vb:rawphrase post_thanks_search_user_gave, {vb:raw userinfo.username}}</a></dd>
</dl>
<dl class="stats">
<dt>{vb:rawphrase post_thanks_total_thanks} received</dt>
<dd><vb:if condition="$userinfo[post_thanks_thanked_times] == 1">
{vb:rawphrase post_thanks_time_post}
<vb:else />
<vb:if condition="$userinfo[post_thanks_thanked_posts] == 1">
{vb:rawphrase post_thanks_times_post, {vb:raw userinfo.post_thanks_thanked_times_formatted}}
<vb:else />
{vb:rawphrase post_thanks_times_posts, {vb:raw userinfo.post_thanks_thanked_times_formatted}, {vb:raw userinfo.post_thanks_thanked_posts_formatted}}
</vb:if>
</vb:if> -- <a href="post_thanks.php?{vb:raw session.sessionurl}do=findthanks&amp;u={vb:raw userinfo.userid}">{vb:rawphrase post_thanks_search_user, {vb:raw userinfo.username}}</a></dd>
</dl>


My patch is not perfect, as it still screws up the signature, if you attempt to put the box above it, but it works when the box is under the signature and I am happy with it.

I hope this helps some people here.

pjkcards
11-30-2015, 11:54 AM
Using the hack from post #35, I'm having a few issues:
1) I click like, then "remove this like", and the page refreshes saying:
"user, you do not have permission to access this page. This could be due to one of several reasons:"
2) Also getting a weird box (I think for the collapse, but that is turned off and it still shows). What's the best way to fix that?
https://www.dropbox.com/s/sk6hcn8789ycru0/Screenshot%202015-11-30%2020.58.45.png?dl=0
3) When I click "thanks" on a post with other thanks, and then remove my thanks, it collapses the box with other likes so I can't see them until I refresh the page.

Any help resolving this would be appreciated.
Thanks.