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)

struff 09-14-2010 02:23 PM

Anyone else have any ideas why nothing shows up in my postbit?

Thanks.

Bob_R 09-15-2010 08:09 PM

I uploaded the 8 files to my server and when I go to import I get this:

Please upload the files that came with this Hack before installing or upgrading!

Hippy 09-15-2010 08:14 PM

Bob_R

make sure you uploaded to the root dir..
sounds like it's not seeing the files..
so I would have to guess they are not in the correct place..

Hippy 09-15-2010 08:16 PM

Quote:

Originally Posted by struff (Post 2098126)
Anyone else have any ideas why nothing shows up in my postbit?

Thanks.

there is not many reason it could be ..
a conflict with another mod..
the xml did not install correctly...

did you check if all parts of the mod it active..
whats your site url..

Bob_R 09-15-2010 08:19 PM

Quote:

Originally Posted by Hippy (Post 2098789)
Bob_R

make sure you uploaded to the root dir..
sounds like it's not seeing the files..
so I would have to guess they are not in the correct place..

Bingo!

Fixed it on my own and came back here and saw your post.

Thanks!!

Bob_R 09-15-2010 08:38 PM

1 Attachment(s)
The alignment is off. See screen shot

Hippy 09-15-2010 09:00 PM

2 things I did to mine...

open your post_thanks_postbit_info
and change it to this
Code:


<vb:if condition="$post['userid']">
        <dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd>
        <vb:if condition="$post['post_thanks_thanked_times'] == 1">
                <dd style="white-space:nowrap; display:inline; float: {vb:stylevar left};">{vb:rawphrase post_thanks_time_post}</dd>
        <vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
                <dd style="white-space:nowrap; display:inline; float: {vb:stylevar left};">{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>
        <vb:else />
                <dd style="white-space:nowrap; display:inline; float: {vb:stylevar left};">{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</dd>
        </vb:if>
</vb:if>

now open your
post_thanks_javascript template
and change to this..


Code:

<script type="text/javascript" src="clientscript/post_thanks.js"></script>

<style type="text/css">
.postbitlegacy .postfoot .textcontrols a.post_thanks_button, .postbit .postfoot .textcontrols a.post_thanks_button  {
        background: url({vb:stylevar imgdir_button}/post_thanks.png) no-repeat transparent {vb:stylevar left};
        padding-{vb:stylevar left}: 20px;
}
.postbitlegacy .postfoot .textcontrols a.post_thanks_button:hover, .postbit .postfoot .textcontrols a.post_thanks_button:hover  {
        background: url({vb:stylevar imgdir_button}/post_thanks-hover.png) no-repeat transparent {vb:stylevar left};
}
</style>


struff 09-16-2010 03:28 AM

Quote:

Originally Posted by Hippy (Post 2098792)
there is not many reason it could be ..
a conflict with another mod..
the xml did not install correctly...

did you check if all parts of the mod it active..
whats your site url..

If you mean if I checked the Plugin Manager, yes, I did.

I tried reinstalling and no luck so it's not that.

Do you know of any mods that this is prone to conflict with?

Thanks!

Hippy 09-16-2010 06:48 PM

no I don't.
but you could turn them all off via admincp and just leave this mod active and see if the problem goes away.. if it does then turn mod on at a time till the problem comes back then you will know witch one is cause the problem.

thats if any of your other mods are affecting it
keep us posted with your diagnostic

Bob_R 09-16-2010 08:06 PM

Quote:

Originally Posted by Hippy (Post 2098820)
2 things I did to mine...

open your post_thanks_postbit_info
and change it to this
Code:


<vb:if condition="$post['userid']">
        <dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd>
        <vb:if condition="$post['post_thanks_thanked_times'] == 1">
                <dd style="white-space:nowrap; display:inline; float: {vb:stylevar left};">{vb:rawphrase post_thanks_time_post}</dd>
        <vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
                <dd style="white-space:nowrap; display:inline; float: {vb:stylevar left};">{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>
        <vb:else />
                <dd style="white-space:nowrap; display:inline; float: {vb:stylevar left};">{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</dd>
        </vb:if>
</vb:if>

now open your
post_thanks_javascript template
and change to this..


Code:

<script type="text/javascript" src="clientscript/post_thanks.js"></script>

<style type="text/css">
.postbitlegacy .postfoot .textcontrols a.post_thanks_button, .postbit .postfoot .textcontrols a.post_thanks_button  {
        background: url({vb:stylevar imgdir_button}/post_thanks.png) no-repeat transparent {vb:stylevar left};
        padding-{vb:stylevar left}: 20px;
}
.postbitlegacy .postfoot .textcontrols a.post_thanks_button:hover, .postbit .postfoot .textcontrols a.post_thanks_button:hover  {
        background: url({vb:stylevar imgdir_button}/post_thanks-hover.png) no-repeat transparent {vb:stylevar left};
}
</style>


Correct me if I'm wrong which I very well could be. But, it appears that your code is the same as the code already in there. Again, I could be wrong please advise.

And, thanks!!

Bob_R 09-16-2010 08:20 PM

Actually it worked like a charm!!

I did notice upon further review a few differences.

Thank you Hippy!! :up:

Hippy 09-16-2010 08:53 PM

;) welcome

lubbie 09-17-2010 07:46 PM

Can anybody help me?!

Received 0 Thanks in 0 Posts
is still aligned to the right. I cant get it left sided also if i use the code wich is posted here


edit Post https://vborg.vbsupport.ru/showpost....&postcount=927 sorted it out. Thanks

rbrashear68 09-17-2010 08:34 PM

I have this installed on 3.6.8. It displays properly, but it does not process properly. The Thanks button just goes away and nothing happens. [scratches bald head]

Gonna2b 09-17-2010 08:57 PM

Guys,

I need your help to solve my trouble. I have clean vBulletin 4.0.7 installed on my box. When I installed "Thanks hack" I have a JS error when trying to select messages in the thread. Please, view my video and if you will have any solution I will appreciate this.

NarutoFTW 09-20-2010 10:45 PM

This doesn't allow you to check thanked posts.

mauro269 09-21-2010 11:05 AM

Sorry if I'm going to up this again, but has anyone found a solution to place the THANKS button near the EDIT MESSAGE button? The solution suggested in the first post is not valid anymore on 4.0.6.
Thanks for your attention

GE-Tom 09-22-2010 10:02 AM

Quote:

Originally Posted by PhotoBoricua (Post 2055652)
How can I change the font size at the thanks box inside the thread?

here...
Attachment 118596

like to know the same. someone can help us plz ?

THANKS !

AfterWorldForum 09-22-2010 10:29 AM

Anybody else experiencing trouble with this mod after upgrading to the latest vbSEO patch by any chance? I am seeing some strange behaviour, and this only started after the upgrade. Before I file a ticket, I'd like to try and see if that's really the cause of it.

Thanks :)

tattooz 09-22-2010 01:07 PM

there anyway to make the thank you count clickable to show what posts the person was thanked for?

Hippy 09-22-2010 07:46 PM

Quote:

Originally Posted by GE-Tom (Post 2101755)
like to know the same. someone can help us plz ?

THANKS !

this would be the easiest way for you to do it
peek here
http://www.youtube.com/watch?v=peLoq...layer_embedded
Quote:

Originally Posted by tattooz (Post 2101820)
there anyway to make the thank you count clickable to show what posts the person was thanked for?

it was taken out , this is explained in this thread somewares..


Quote:

Originally Posted by AfterWorldForum (Post 2101772)
Anybody else experiencing trouble with this mod after upgrading to the latest vbSEO patch by any chance? I am seeing some strange behaviour, and this only started after the upgrade. Before I file a ticket, I'd like to try and see if that's really the cause of it.

Thanks :)

Lot of people I talk to have trouble with addon's :( when they run vbseo
sorry I can't be of any help

baghdad4ever 09-24-2010 03:27 PM

Quote:

Originally Posted by grc (Post 1986809)
Since Abe seems to be busy with other things, I went ahead and hacked the font size on the "Following Users Say..." line on the forums.

Listen, I'm not a coder and all I can say is that it works on my forum -- follow at your own risk and be sure you can go backwards if needed.

Anyway...

In post_thanks_postbit find:
HTML Code:

<h2 class="<vb:if condition="!$vboptions['legacypostbit']">post</vb:if>title">
If you're using the legacy (vertical) postbit template: change the word "title" to "bitlegacy"

Otherwise change the word "title" to "content"

Again: I'm no coder - try it at your own risk.


thank you

you fix it:D

nike.stars 09-26-2010 02:53 AM

mis-posted

slinky 09-27-2010 12:18 AM

I'm seeing the Thanks button breaking my style. First, I had to change the percentage of the space of the buttons on the right, e.g. edit post, reply, etc. The problem is that there is still a breaking of the top of button. It's definitely the Thank You hack as the problem goes away if disabled.

slinky 09-27-2010 12:19 AM

1 Attachment(s)
Here is what it looks like.

sulasno 09-27-2010 12:18 PM

in addition to this Thanks hack, would it possible to create a Groans hack ?

this would be fun

Welshy2008 09-27-2010 03:33 PM

1 Attachment(s)
I see that this great mod is no longer supported. :(


But does anyone know how to align the Thanked and Thanks in posbit, please?


Please view the attachment, below for a screenshot.

Many Thanks

midnz 09-27-2010 06:05 PM

Quote:

Originally Posted by Welshy2008 (Post 2103749)
I see that this great mod is no longer supported. :(


But does anyone know how to align the Thanked and Thanks in posbit, please?


Please view the attachment, below for a screenshot.

Many Thanks

The postbit alignment issue is resolved in post #854

Welshy2008 09-27-2010 09:37 PM

Perfect, Thank You midnz. :)

OverHere 09-28-2010 11:59 AM

Greetings All,

This above mod is not exactly the same as I need, so, I am attempting to locate the 'Post Thank you' module which is the same as here:

Please go to http://forums.moneysavingexpert.com/....php?t=1639655 and click on the i.d. 'fermi'. In the drop-down window that will open up, you will see the option: 'Find all thanked posts by fermi'. You are then taken to the relevant page showing all the related posts, which, more importantly, are all clickable, are live links.

Now, if you register at this website and go to http://forums.moneysavingexpert.com/member.php?u=175491, then hit Statistics of the i.d. 'fermi', you will see these 2 live link options:

Find all thanked posts by fermi
Find all posts thanked by fermi

You can now conveniently go to either of these 2 options.

The above seems to be the only closest mod to this I can find but, this does not allow the above 2 options to be live links and is generally not as thorough as the above mod.

I would be grateful if someone can lead me to where I can find the precise mods being used by moneysavingexpert.com - I need it to be compatible with VB version 4.0.7.

Thank you,

O.H.

Dexter_kcd 09-30-2010 06:31 PM

Quote:

Originally Posted by OverHere (Post 2104192)
Greetings All,

This above mod is not exactly the same as I need, so, I am attempting to locate the 'Post Thank you' module which is the same as here:

That is essentially the same mod, just an older version. The 4.x version has those features coded, but they don't seem to work properly. If you review or search this thread you will see that lots of people have asked about this. Hopefully someone will work out a workaround, and share it.

Dexter...

kjetterman 10-01-2010 01:27 AM

For some reason, I am unable to click on the "Thanks" number given on either the postbit or my profile. Some of my members are saying that they would like to check to see where they received thanks.

How can I fix this?

djbaxter 10-01-2010 01:42 AM

Quote:

Originally Posted by kjetterman (Post 2105347)
For some reason, I am unable to click on the "Thanks" number given on either the postbit or my profile. Some of my members are saying that they would like to check to see where they received thanks.

How can I fix this?

If you have reputation ebaled, and Thanks clicks contribute to reputation, then you can display as many as you wish in the member profile (settings link).

If not, you can't see except at the bottom of the post.

vauge 10-01-2010 02:11 PM

Quote:

Originally Posted by djbaxter (Post 2105351)
If you have reputation ebaled, and Thanks clicks contribute to reputation, then you can display as many as you wish in the member profile (settings link).

If not, you can't see except at the bottom of the post.

Pardon my ignorance. Are you saying that if we have reputation enabled, we can see *all* thanked posts in profiles?

Bob_R 10-01-2010 09:41 PM

1 Attachment(s)
Quote:

Originally Posted by djbaxter (Post 2105351)
If you have reputation ebaled, and Thanks clicks contribute to reputation, then you can display as many as you wish in the member profile (settings link).

If not, you can't see except at the bottom of the post.

I have what you mention above.

But, how do I get this ** see screen shot provided ** at the bottom of the postbit.

- I'd like the Rep Power = 16 (or whatever number obviously) to be on the same line
- I'd like the "dots" directly underneath
- And, lastly I'd like it at the bottom of the postbit

Thanks!!

djbaxter 10-01-2010 11:41 PM

Quote:

Originally Posted by vauge (Post 2105527)
Pardon my ignorance. Are you saying that if we have reputation enabled, we can see *all* thanked posts in profiles?

You set how many are viewable in vBulletin | Settings | Reputation.

djbaxter 10-01-2010 11:44 PM

Quote:

Originally Posted by Bob_R (Post 2105714)
I have what you mention above.

But, how do I get this ** see screen shot provided ** at the bottom of the postbit.

- I'd like the Rep Power = 16 (or whatever number obviously) to be on the same line
- I'd like the "dots" directly underneath
- And, lastly I'd like it at the bottom of the postbit

Thanks!!

I don't know. You'd need some customization to get all that.

smelly 10-03-2010 08:03 AM

I downloaded the files..uploaded the required files to my forum root .
But when I went to upload the product xml file I get the following message....Please upload the files that came with this Hack before installing or upgrading!

must be missing something...thats no real surprise

SoltanWorld 10-04-2010 10:21 AM

I got this error

Invalid SQL:

REPLACE INTO search (userid, ipaddress, personal, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, displayterms, searchhash)
VALUES (2, '80.191.71.176', 1, 'Arsham', '', 'post.dateline', 'DESC', 0.10575, 1, '6058,2073,1083,1034,1033,1010,994,777,729,659,658 ,656,645,606,492,391,330,313,3 10,308,300,299,298,288,284,282,256,251,244,237,229 ,164,73', 1286189830, 'a:6:{s:5:\"words\";a:0:{}s:9:\"highlight\";a:0:{} s:6:\"common\";a:0:{}s:5:\"use rs\";a:1:{i:31;s:6:\"Arsham\";}s:6:\"forums\";i:0; s:7:\"options\";a:3:{s:11:\"st arteronly\";i:0;s:11:\"childforums\";i:1;s:6:\"act ion\";s:7:\"process\";}}', '4a61614bc98b8b9babf9be36ed501c1d');

MySQL Error : Table 'soltanz_forumvb.search' doesn't exist
Error Number : 1146

Is searching possible ?

Robert7 10-04-2010 11:56 AM

Thx for this mod.

You should separate these two phrases: 'Thanks' and 'Thanks'; the first means "Thank you" and the second one means "Number of Thanks". But you use "Thanks" as button title and also as number of thanks which used in postbit information. These two phrase should be translated to two separate phrase in other languages.


All times are GMT. The time now is 03:34 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.05075 seconds
  • Memory Usage 1,852KB
  • 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
  • (4)bbcode_code_printable
  • (1)bbcode_html_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