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)

Hippy 06-19-2012 12:41 AM

Quote:

Originally Posted by d34fdumbbl1nd (Post 2340885)
I got it. But actually i don't why you are talking of three different versions in this case.

the problem is in the template post_thanks_box. there is a reference to postbitim the im in the class breaks the thread inline moderation (top of the thread). it seems to me that vBulletin grabs all elements with this class to check if there is any checkbox checked.

here is the fixed part in the product-post_thanks.xml
Code:

[...]
                <template name="post_thanks_box" templatetype="template" date="1262489133" username="Abe1" version="7.83"><![CDATA[<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>]]></template>[...]

this Fix is tested in vBulletin 4.1.12

I'm confused a little, to clarify remove the im from postbitim in the template post_thanks_box
to fix what ?

ForceHSS 06-19-2012 01:12 AM

Quote:

Originally Posted by d34fdumbbl1nd (Post 2340885)
I got it. But actually i don't why you are talking of three different versions in this case.

the problem is in the template post_thanks_box. there is a reference to postbitim the im in the class breaks the thread inline moderation (top of the thread). it seems to me that vBulletin grabs all elements with this class to check if there is any checkbox checked.

here is the fixed part in the product-post_thanks.xml
Code:

[...]
                <template name="post_thanks_box" templatetype="template" date="1262489133" username="Abe1" version="7.83"><![CDATA[<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>]]></template>[...]

this Fix is tested in vBulletin 4.1.12

all i see you put in that so called fix is [...] fixes nothing. If you are going to show a fix show it with a fix that you have fully tested and then post the fix. Not what you have posted above

Hippy 06-19-2012 09:32 AM

@forcehss, I seen this [...] but did not think it was anything LOL
No wonder I'm confused

tinoco2 06-21-2012 10:09 AM

Someone know how make work this mod in vbulletin 4.1.10 ?

When going to upload the XML says:

The following dependencies were not met:

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

svyrydov 06-21-2012 10:11 AM

waiting for 4.2 compapability

ForceHSS 06-21-2012 11:23 AM

I am not even going to answer the two posts above me not even worth it I am sure they both can read but are to lazy to

Disco_Dave 06-21-2012 11:23 AM

Quote:

Originally Posted by svyrydov (Post 2341695)
waiting for 4.2 compapability

We have this running on 4.2 pl2 with no problems...

snakes1100 06-21-2012 03:18 PM

@ForceHSS
Just a fyi, so you dont get asked, it appears that maybe during a debugging session or something else, you forgot to uncomment the code for searching in the post_thanks_memberinfo_block template in this version of your release post_thanks_7_83_with search fix.zip


Edit Template "post_thanks_memberinfo_block"
Code:

        <!-- <li>
                <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>
        </li>
        <li>
                <a href="post_thanks.php?{vb:raw session.sessionurl}do=findthanks_user_gave&amp;u={vb:raw userinfo.userid}">{vb:rawphrase post_thanks_search_user_gave, {vb:raw userinfo.username}}</a>
        </li> -->

Should be:
Code:

        <li>
                <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>
        </li>
        <li>
                <a href="post_thanks.php?{vb:raw session.sessionurl}do=findthanks_user_gave&amp;u={vb:raw userinfo.userid}">{vb:rawphrase post_thanks_search_user_gave, {vb:raw userinfo.username}}</a>
        </li>

For anyone else missing the links on the About Me, just edit the template above to fix the missing search links on the About Me tab.

ForceHSS 06-21-2012 08:38 PM

Quote:

Originally Posted by snakes1100 (Post 2341765)
@ForceHSS
Just a fyi, so you dont get asked, it appears that maybe during a debugging session or something else, you forgot to uncomment the code for searching in the post_thanks_memberinfo_block template in this version of your release post_thanks_7_83_with search fix.zip


Edit Template "post_thanks_memberinfo_block"
Code:

        <!-- <li>
                <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>
        </li>
        <li>
                <a href="post_thanks.php?{vb:raw session.sessionurl}do=findthanks_user_gave&amp;u={vb:raw userinfo.userid}">{vb:rawphrase post_thanks_search_user_gave, {vb:raw userinfo.username}}</a>
        </li> -->

Should be:
Code:

        <li>
                <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>
        </li>
        <li>
                <a href="post_thanks.php?{vb:raw session.sessionurl}do=findthanks_user_gave&amp;u={vb:raw userinfo.userid}">{vb:rawphrase post_thanks_search_user_gave, {vb:raw userinfo.username}}</a>
        </li>

For anyone else missing the links on the About Me, just edit the template above to fix the missing search links on the About Me tab.

thanks for that fix now uploaded. So you know that fix was given to me from someone else I do check over all but just missed that one must of been busy at that time

ForceHSS 06-21-2012 08:47 PM

New version here

Bisha 06-22-2012 08:52 PM

What is fixed in this new version?

Thanks!

Streamcentral 06-22-2012 09:53 PM

Hi

a few minutes ago i downloaded the (ajax) thank you hack . im currently running vb 4.2.0 and followed the instructions - at the end it says - Import product-post_thanks.xml into PRODUCTS. Allow Overwrite "YES" (admincp -> Plugin System -> Manage Products -> [Add/Import Product])

their does not seem to be a file named that in the download that i can see can anyone help?

Thanks

ForceHSS 06-22-2012 11:38 PM

Quote:

Originally Posted by Streamcentral (Post 2342154)
Hi

a few minutes ago i downloaded the (ajax) thank you hack . im currently running vb 4.2.0 and followed the instructions - at the end it says - Import product-post_thanks.xml into PRODUCTS. Allow Overwrite "YES" (admincp -> Plugin System -> Manage Products -> [Add/Import Product])

their does not seem to be a file named that in the download that i can see can anyone help?

Thanks

there is, read again untill you understand it. Yes I could help you better but then you would never learn it yourself

tareqbd 06-23-2012 04:25 PM

Quote:

Originally Posted by ForceHSS (Post 2249550)
Version 7.84 (21/06/12 by Forcehss) fix given by snakes1100

After installing the update of 7.84 in my vb 4.1.3 PL8 , the notification shows 4 outdated tamplates.
Quote:

Out-of-Date Custom Templates Found!
There are currently 4 customized template(s) that need to be updated or reverted. Some sections of vBulletin may not function if you do not do this!

Click here to view these templates!
"post_thanks_box_bit
Default Template Updated in Post Thank You Hack 7.84 by Abe1
Your Custom Template Last Edited in Post Thank You Hack 7.84 by System
Changes were automatically merged into this template"

please help me in this.

ForceHSS 06-23-2012 10:31 PM

is this on default skin or a custom one

Forbiddenz 06-24-2012 09:57 AM

1 Attachment(s)
Hello, i'm running vb 4.2 and was using 7.83 post thank you hack, running smooth except this one :
https://vborg.vbsupport.ru/attachmen...1&d=1340535334

Upgrading to 7.84 and still finding this kind of error.


You can see that every User separated by comma, but i want to add a space to make it looks More beautiful.

So it's should be like this :
BoNNie, deejee, Demon-Valkyrie, etc.....

Can you help me? Thanks.

Hippy 06-24-2012 10:44 AM

1 Attachment(s)
this one works https://vborg.vbsupport.ru/showpost....postcount=1941
like it should
it's also located under staff edit in the first post

Forbiddenz 06-24-2012 12:23 PM

Quote:

Originally Posted by Hippy (Post 2342475)
this one works https://vborg.vbsupport.ru/showpost....postcount=1941
like it should
it's also located under staff edit in the first post

Thank you Hippy but yours is also error in my forum, using 4.2 Vbulletin. with Business White style.

Can you tell where i could edit that things in my Templates? so i can fix it myself.

Hippy 06-24-2012 12:32 PM

add a &nbsp; to your post_thanks_box_bit template where you feel it's needed

Forbiddenz 06-24-2012 02:56 PM

In my post_thanks_box_bit, it shows :
PHP Code:

<a href="member.php?{vb:raw session.sessionurl}u={vb:raw thank.userid}" rel="nofollow">{vb:raw thank.username}</a><vb:if condition="$date_thank">&nbsp;({vb:raw date_thank})</vb:if>{vb:raw virg

Which part i should input the &nbsp;

Hippy 06-24-2012 03:05 PM

Try after <a/>
since the code posted displays like the pic I posted I can't test it because I can not reproduce it.

ForceHSS 06-24-2012 03:11 PM

Forbiddenz i dont see how you are getting this error from my updated plugin or hippys i cant reproduce it either so it must be something else that is causing it another plugin maybe

Forbiddenz 06-24-2012 03:38 PM

Added it after </a> and it becoming like User ,User1 ,User2. So I add it before the <a..... And it works like magic!

Thanks for your support Hippy!

Hippy 06-24-2012 05:10 PM

Glad it worked.. this is how allot of us learn. :)

ForceHSS 06-24-2012 05:11 PM

happy you got it fixed no idea why it messed up in the first place could of been from another plugin some how it removed part of the coding you needed as it should be like that default from vb

gajinoz 06-25-2012 07:10 AM

I've read quite a few of the posts but there is one thing I'm still not 100% sure on. I see there are two versions of 7.84.zip to download, one has a search fix. I'm using vB 4.1.7

Which of the above should I download?

ForceHSS 06-25-2012 03:14 PM

Quote:

Originally Posted by gajinoz (Post 2342714)
I've read quite a few of the posts but there is one thing I'm still not 100% sure on. I see there are two versions of 7.84.zip to download, one has a search fix. I'm using vB 4.1.7

Which of the above should I download?

try the one with out search
on another note I have put in alot of fixes so you should not get that problem any more so you should not need the search fix version now

tareqbd 06-25-2012 06:30 PM

Quote:

Originally Posted by ForceHSS (Post 2342417)
is this on default skin or a custom one

we have purchased one from completevb. currently using that only.

ForceHSS 06-25-2012 08:21 PM

Quote:

Originally Posted by tareqbd (Post 2342830)
we have purchased one from completevb. currently using that only.

Then I would talk to them as it is there skin you could try removing the skin and reinstalling it see if that helps but as you could of make custom changes it is hard to help even if you did give a link to it which you have not

Hippy 06-26-2012 12:17 AM

Quote:

Originally Posted by tareqbd (Post 2342830)
we have purchased one from completevb. currently using that only.

you can send me a link that I can vview the issue being a guest or sent me up a temp account and Ill see what I can do ..

just read back and if they are telling you they are out of date .. revert them back..

all edited that have been made before are now in the current releases

gajinoz 06-27-2012 06:52 AM

Installed, seems to be working OK. Thanks.

sticheno 06-29-2012 02:39 PM

1 Attachment(s)
Nicely done. My users seem to really like it.

One minor issue I'm noticing that I've been unable to correct. Since installing it, there's now a huge white space between the Blog Entries and the number of blogs. Before installation that wasn't the case and I'll illustrate it below with two screen shots combined. The top, installed with the space. Below that, uninstalled and no space as shown on my test forum for the same user. Any ideas what's causing that? Appears to be CSS related since the code is similar but that's a guess.

sticheno 06-29-2012 02:47 PM

Ahem... <slaps_head>

Actually, I now see you can turn that off in the admin panel. Wasn't real crazy about that stat so it's now gone and of course that resolved the issue.

Great hack. Many thanks.

leftwich86 07-08-2012 01:53 PM

Does this not work with 4.2?

ForceHSS 07-08-2012 04:18 PM

Quote:

Originally Posted by leftwich86 (Post 2346069)
Does this not work with 4.2?

Read staff edit on first post

leftwich86 07-08-2012 05:28 PM

thanks

kamrandahir 07-08-2012 09:50 PM

The following dependencies were not met:

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)

Crotan 07-09-2012 02:12 AM

Quote:

Originally Posted by kamrandahir (Post 2346202)
The following dependencies were not met:

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)

Someone didn't read the mod description :p

Quote:

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.


If Abe1 returns he can request these packages be removed.

agentaeon 07-09-2012 11:43 AM

Hi,

I had to reinstall the thanks system but before I did I used phpmyadmin to make a backup of the vbpost_thanks table. Unfortunately on restoring this the thanks aren't reflected on the site.

Have I missed something?

Thanks.

ForceHSS 07-09-2012 01:41 PM

Quote:

Originally Posted by agentaeon (Post 2346341)
Hi,

I had to reinstall the thanks system but before I did I used phpmyadmin to make a backup of the vbpost_thanks table. Unfortunately on restoring this the thanks aren't reflected on the site.

Have I missed something?

Thanks.

You did not have to remove all you needed to do was to over right the older files best to start from new this way you will have no more problems


All times are GMT. The time now is 06:45 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.06694 seconds
  • Memory Usage 1,851KB
  • 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
  • (1)bbcode_php_printable
  • (16)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