vb.org Archive

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

fxdigi-cash 07-26-2013 09:18 AM

also is it possible to disable the mod in some forums ???

Update: I found this option in the settings so it solved...

Ahsan Ali 07-26-2013 05:06 PM

xml not uploading for me in vb 4.2.1 any solution ?

fxdigi-cash 07-26-2013 06:08 PM

Quote:

Originally Posted by Ahsan Ali (Post 2435511)
xml not uploading for me in vb 4.2.1 any solution ?

which version are you using??

did you look at this post:

https://vborg.vbsupport.ru/showpost....postcount=1941

fxdigi-cash 07-28-2013 06:09 AM

Thanks, now things looks great. works perfect on vb4.2.1

The page reload was caused in the custom style and didn't know how to resolve it, but only by uploading the style again under different name.

Good luck

mdawg 07-28-2013 10:15 PM

Is this native in vbulletin 5? If not wish someone would create the mod for vb 5.

djbaxter 07-28-2013 11:02 PM

Quote:

Originally Posted by mdawg (Post 2435839)
Is this native in vbulletin 5? If not wish someone would create the mod for vb 5.

Many people wish someone would create a version of real vBull;etin for vB5. :D

But really there are probably not enough active forums using vB5 to justify the time and effort to upgrade many of these mods.

You do realize you can use vB4 still if you bought a vB5 license, right?

stevieb 07-30-2013 02:50 PM

any idea how we can add thanks given/received in vB4.2.0 by adding to the postbit_legacy template?

I just want to add thanks given and thanks received but when I use the standard "template_hook.postbit_userinfo_right_after_po sts" hook, the values are not level as if the thanks received has 10 spaces after it so the thanks given goes onto a new line a few spaces indent.

Or any idea how I change this so they all align left? If it's impossible to get vb:raw scripts...

Thanks

stevieb 07-30-2013 08:54 PM

1 Attachment(s)
Quote:

Originally Posted by stevieb (Post 2436106)
any idea how we can add thanks given/received in vB4.2.0 by adding to the postbit_legacy template?

I just want to add thanks given and thanks received but when I use the standard "template_hook.postbit_userinfo_right_after_po sts" hook, the values are not level as if the thanks received has 10 spaces after it so the thanks given goes onto a new line a few spaces indent.

Or any idea how I change this so they all align left? If it's impossible to get vb:raw scripts...

Thanks

Sorted, basically you need to go into your postbit_legacy and then where you see post count as shown:

Code:

{vb:rawphrase 'posts'}<dd>{vb:raw post.posts}</dd>
you add your own div *if required to nest it* and then add the following code directly afterwards:

Code:

<div class="YOUR_DIV_ID">
Thanks Received <dd>{vb:raw post.post_thanks_thanked_times}</dd></div>
<div class="YOUR_DIV_ID">
Thanks Given <dd>{vb:raw post.post_thanks_user_amount}</dd></div>

Works fine in vB 4.2.0

Completed code (in my install using custom postbit file)

Code:

<vb:if condition="$post['age']">
<div class="my_div_name">
{vb:rawphrase age} <dd>{vb:raw post.age}</dd></div></vb:if>

<div class="my_div_name">
{vb:rawphrase 'posts'}<dd>{vb:raw post.posts}</dd></div>

<div class="my_div_name">
Thanks Received <dd>{vb:raw post.post_thanks_thanked_times}</dd></div>

<div class="my_div_name">
Thanks Given <dd>{vb:raw post.post_thanks_user_amount}</dd></div>

Attachment 145893

fxdigi-cash 08-04-2013 07:39 AM

I noticed that the mod causes some issue on the showthread page. some warning shows up on Chrome browser indicates the following:

Code:

No inlinemod selection checkbox found for post_imod_checkbox_thanks_box_xxxx
any idea how to solve this issue??

stevieb 08-04-2013 11:51 AM

Quote:

Originally Posted by fxdigi-cash (Post 2437001)
I noticed that the mod causes some issue on the showthread page. some warning shows up on Chrome browser indicates the following:

Code:

No inlinemod selection checkbox found for post_imod_checkbox_thanks_box_xxxx
any idea how to solve this issue??

Weird I don't get this. Are you on 4.2.0? Have you added an inline mod hack to your postbit_legacy? If do try disabling that. I had loads of issues but got it looking good now (see image above)....

fxdigi-cash 08-05-2013 08:25 PM

Quote:

Originally Posted by stevieb (Post 2437039)
Weird I don't get this. Are you on 4.2.0? Have you added an inline mod hack to your postbit_legacy? If do try disabling that. I had loads of issues but got it looking good now (see image above)....

I'm on vb.4.2.1

even if I disable postbit_legacy stats, still the same error shows up. if you use chrome inspection tool, you will notice these issues.

possibly some extra code is needed to include inside vbulletin-core.js since the issue is javascript related


PHP Code:

No inlinemod selection checkbox found for post_imod_checkbox_thanks_box_7313 vbulletin-core.js?v=421:11 

I didn't try it on vb.4.2 pl3, but only the latest vb4.2.1

I'm sure the solution is not that difficult.... I hope someone can help!

Hippy 08-06-2013 07:03 PM

Quote:

Originally Posted by fxdigi-cash (Post 2437001)
I noticed that the mod causes some issue on the showthread page. some warning shows up on Chrome browser indicates the following:

Code:

No inlinemod selection checkbox found for post_imod_checkbox_thanks_box_xxxx
any idea how to solve this issue??

Quote:

Originally Posted by stevieb (Post 2437039)
Weird I don't get this. Are you on 4.2.0? Have you added an inline mod hack to your postbit_legacy? If do try disabling that. I had loads of issues but got it looking good now (see image above)....

Quote:

Originally Posted by fxdigi-cash (Post 2437416)
I'm on vb.4.2.1

even if I disable postbit_legacy stats, still the same error shows up. if you use chrome inspection tool, you will notice these issues.

possibly some extra code is needed to include inside vbulletin-core.js since the issue is javascript related


PHP Code:

No inlinemod selection checkbox found for post_imod_checkbox_thanks_box_7313 vbulletin-core.js?v=421:11 

I didn't try it on vb.4.2 pl3, but only the latest vb4.2.1

I'm sure the solution is not that difficult.... I hope someone can help!

what version of this mod are you all using ?
the op's
mine or
forceHSS

fxdigi-cash 08-07-2013 11:41 AM

Quote:

Originally Posted by Hippy (Post 2437559)
what version of this mod are you all using ?
the op's
mine or
forceHSS

As for me, I use this one: post_thanks_ version_7.84+with_and-without-integrated_postbit_box_collapse.zip in this page: https://vborg.vbsupport.ru/showpost....postcount=1941

I thought all versions in that page are fixed!!!

which one do you recommend me to install?? is there any bug-free version??

Thanks

fxdigi-cash 08-09-2013 02:53 PM

Up!!!!!

ku-med 08-10-2013 09:00 AM

So it's not compatible with vb 4.2.1 yet even with this fix ?

https://vborg.vbsupport.ru/showpost....postcount=1941

I've tried it and it didn't work for me even with editing xml the 10th line ( changing the max version to 4.2.1 ) .. any other solutions ?

Thanks in advance!

Hippy 08-11-2013 03:27 PM

they both are 100% working to the latest vb4

Quote:

Originally Posted by fxdigi-cash (Post 2437625)
As for me, I use this one: post_thanks_ version_7.84+with_and-without-integrated_postbit_box_collapse.zip in this page: https://vborg.vbsupport.ru/showpost....postcount=1941

I thought all versions in that page are fixed!!!

which one do you recommend me to install?? is there any bug-free version??

Thanks

Quote:

Originally Posted by ku-med (Post 2438125)
So it's not compatible with vb 4.2.1 yet even with this fix ?

https://vborg.vbsupport.ru/showpost....postcount=1941

I've tried it and it didn't work for me even with editing xml the 10th line ( changing the max version to 4.2.1 ) .. any other solutions ?

Thanks in advance!


Krazeguy 08-11-2013 11:34 PM

I can confirm that post_thanks_ version_7.84+with_and-without-integrated_postbit_box_collapse.zip works fine with 4.2.1

A little tip if it's not showing for your visitors, just enter the admin > settings > post thanks options panel and then save and exit. It seemed to get it re-activated and working for me.

ku-med 08-12-2013 05:54 AM

Oh xD Thanks guys it's worked for me now :)

I've downloaded this attachment https://vborg.vbsupport.ru/showpost....postcount=1433

cdoyle 08-13-2013 10:21 PM

I think I downloaded the wrong version, when I tried to install it I get this error.

This product is not compatible with version 4.2.0 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

Is there a 4.2 version? From the comments, looks like there is. I just don't see it.

fxdigi-cash 08-15-2013 06:25 AM

Quote:

Originally Posted by Hippy (Post 2438329)
they both are 100% working to the latest vb4

Quote:

Originally Posted by Krazeguy (Post 2438413)
I can confirm that post_thanks_ version_7.84+with_and-without-integrated_postbit_box_collapse.zip works fine with 4.2.1

A little tip if it's not showing for your visitors, just enter the admin > settings > post thanks options panel and then save and exit. It seemed to get it re-activated and working for me.

Thanks for reply. This is strange that even after re-installing the mod, I still get these warnings in Chrome. I disabled all mods I have, but only this one and I still get these warnings. Then I disabled this mod and things became fine. :confused:

Now I guess I will have to try each version individually and see if it works or not...!!

ku-med 08-15-2013 11:23 AM

Quote:

Originally Posted by cdoyle (Post 2438738)
I think I downloaded the wrong version, when I tried to install it I get this error.

This product is not compatible with version 4.2.0 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

Is there a 4.2 version? From the comments, looks like there is. I just don't see it.

Here: https://vborg.vbsupport.ru/attachmen...6&d=1338133936

You'll find this attachment within the same post at the end :D

https://vborg.vbsupport.ru/showpost....postcount=1941

fxdigi-cash 08-17-2013 07:20 PM

Does this version show any error in chrome browser?? especially when using Chrome Inspection Element tool??

I still get warnings though even after installing this one you recommended !! :confused:

Quote:

Originally Posted by ku-med (Post 2438996)


JordanBuss13 08-27-2013 06:45 PM

Does this work for vBulletin 4.2.0? I'd really like to use this. :)

Hippy 08-27-2013 08:08 PM

Quote:

Originally Posted by JordanBuss13 (Post 2441485)
Does this work for vBulletin 4.2.0? I'd really like to use this. :)

Yes. Read the op (original post) first /;)

lasalle6969 08-30-2013 04:29 PM

The best

JordanBuss13 08-30-2013 04:33 PM

Do you know how I can make it like this?

https://vborg.vbsupport.ru/external/2013/09/45.png

TheAnnihilator 08-31-2013 02:11 AM

I uninstalled the plugin, and then when I re-installed it all of the previous thanks were gone.

Luckily I had a backup of the database and was able to pull all of the information. However when I go into a thread with likes, none of them show up until someone else likes the post, as well the thank count is off.

Is there a way to update the thanks information in the threads?

lasalle6969 09-01-2013 01:36 PM

I like it. thanks thans thanks!!!
Because I see this hack in another forum, and the next....... mine

UPSSS..... This is incompatible with 4.2.0

Benedicte 09-02-2013 08:35 AM

Quote:

Originally Posted by RobbieZ (Post 1942322)
AdminCp>Styles & Templates>Style Manager>Postbit

Now find this in postbit

HTML Code:

{vb:raw template_hook.postbit_controls}
Highlight it, copy it and delete it.

Now find this bit in postbit

HTML Code:

<span class="postcontrols">
and press enter after it and paste the first one.

PHP Code:

<div class="postfoot">
        <
div class="textcontrols">
            <
span class="postcontrols">
{
vb:raw template_hook.postbit_controls}
                <
img style="display:none" id="progress_{vb:raw post.postid}" src="{vb:stylevar imgdir_misc}/progress.gif"  alt="{vb:rawphrase loading_editor_please_wait}" />
                <
vb:if 



I can't find this in VBulletin 4..

friendlymela 09-03-2013 06:37 AM

Hey i have installed this mod in my vb forum its working good but i am not happy with the thanks sequence for example see this screen shoot

https://vborg.vbsupport.ru/external/2013/09/71.png

i want all thanks in sequence what i do for it?

ozzy47 09-03-2013 09:21 AM

It is in sequence, but it lists it by the username not the date the thanks was given.

friendlymela 09-03-2013 11:59 AM

Quote:

Originally Posted by friendlymela (Post 2442786)
Hey i have installed this mod in my vb forum its working good but i am not happy with the thanks sequence for example see this screen shoot

https://vborg.vbsupport.ru/external/2013/09/71.png

i want all thanks in sequence what i do for it?

i mean u see in above post the user cute dove hit on thanks but the word cute showing in first line and other word in 2nd line

Carpesimia 09-04-2013 07:47 PM

Can you limit who can "Thank" by usergroup?

Vaira 09-13-2013 04:40 PM

Quote:

Originally Posted by friendlymela (Post 2442846)
i mean u see in above post the user cute dove hit on thanks but the word cute showing in first line and other word in 2nd line


I have the same issue since 4.2.1. update. Anyone able to fix it? :)
Would be nice.:)

huevncom 09-14-2013 01:01 AM

It does not support the version 4.2.1?

djbaxter 09-14-2013 01:23 AM

Yes it does. Look into the amendments:
Quote:

STAFF EDIT:
Note - The mod author has been unreachable for some time, but the vbulletin.org community has stepped up to provide a number of individual fixes over the years. ForceHSS and Hippy have both combined many of these fixes into product files.

ALL CREDIT STILL GOES TO ABE1 And this is still 'his' mod. Please still mark the mod as installed if you use any version of it.

That said so you don't need to apply a dozen + small fixes yourself you should consider downloading one of the updated packages below:

Hippy has one: in this post.

AND / OR

ForceHSS has one: In this post.

Steve-Hoog 09-14-2013 02:05 AM

Problem prior today with the original Thanks hack installed with 4.1.x working fine, but I had to install 4.2.x today no choice what so ever. The original Hack then locked up my forum and I had to Uninstall it.

Now when I try to install the Mods/Patches to original I get this: Please upload the files that came with this Hack before installing or upgrading!

Got back and try to install the original and I get this: The following dependencies were not met: 1.This product is not compatible with version 4.2.1 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

This is the best Hack ever and forever for vB, so what to do?

A thought just came to me I will try next. Instead of Import the original I will try to FTP it and then do the Mod/Patch Import.

Hippy 09-14-2013 03:53 PM

Quote:

Originally Posted by JordanBuss13 (Post 2442040)
Do you know how I can make it like this?

https://vborg.vbsupport.ru/external/2013/09/45.png

How to turn the "Post Thank You" hack into a "Likes" system similar to vBulletin.org
https://vborg.vbsupport.ru/showthread.php?t=266358
https://vborg.vbsupport.ru/showpost....postcount=1943
Quote:

Originally Posted by Benedicte (Post 2442499)
I can't find this in VBulletin 4..

youll find a link to the info here
https://vborg.vbsupport.ru/showpost....postcount=1943
Quote:

Originally Posted by lasalle6969 (Post 2442351)
I like it. thanks thans thanks!!!
Because I see this hack in another forum, and the next....... mine

UPSSS..... This is incompatible with 4.2.0

https://vborg.vbsupport.ru/showpost....postcount=1943
Quote:

Originally Posted by Vaira (Post 2445386)
I have the same issue since 4.2.1. update. Anyone able to fix it? :)
Would be nice.:)

https://vborg.vbsupport.ru/showpost....postcount=1943

Quote:

Originally Posted by Steve-Hoog (Post 2445481)
Problem prior today with the original Thanks hack installed with 4.1.x working fine, but I had to install 4.2.x today no choice what so ever. The original Hack then locked up my forum and I had to Uninstall it.

Now when I try to install the Mods/Patches to original I get this: Please upload the files that came with this Hack before installing or upgrading!

Got back and try to install the original and I get this: The following dependencies were not met: 1.This product is not compatible with version 4.2.1 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

This is the best Hack ever and forever for vB, so what to do?

A thought just came to me I will try next. Instead of Import the original I will try to FTP it and then do the Mod/Patch Import.

this has all fixes https://vborg.vbsupport.ru/showpost....postcount=1943
Just over write files and xml don't uninstall

Jamey 09-15-2013 12:57 PM

Quote:

Originally Posted by Hippy (Post 2445603)
this has all fixes https://vborg.vbsupport.ru/showpost....postcount=1943
Just over write files and xml don't uninstall

That post is a mess, which link do I follow?

Hippy 09-15-2013 01:40 PM

Quote:

Originally Posted by Jamey (Post 2445761)
That post is a mess, which link do I follow?

The op is a mess? Lol
If you read it you'll find your answer
I spent the time to put everything in one place

There are 2 updated files there
Only difference is collapsible thanks box.

Pick one and install it.


All times are GMT. The time now is 01:38 AM.

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

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03894 seconds
  • Memory Usage 1,876KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (2)bbcode_html_printable
  • (3)bbcode_php_printable
  • (27)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete