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)

pjkcards 03-20-2013 07:48 AM

Quote:

Originally Posted by Hippy (Post 2411092)
you replaced all file.. making 100% sure they where over written ???????
and over wrote the xml ???????

then it will work..
if you don't get it
pm me.. Ill come in and fix it..

Ah, I didn't know there were additional files. Fixed. Thanks!

A few things:
1) The "Thanks" button is on the far left. Can I move it just to the left of the "Edit Post" so it is more visiable, and perhaps add a small icon next to it to make it stick out?
2) For the "Thanks x times in x posts", can I have this shown only when they have been thanked at least once? 90% of members probably won't get a thank you, so it is not worth having for everything until they get thanked.

Other than that, excellent mod. Thanks again!

Hippy 03-20-2013 10:23 AM

move thanks button
https://vborg.vbsupport.ru/showpost....postcount=1842
the icon should be there if your images are in the correct dir..
make sure you all the images to your custom style dir
youll need a vb:if condition so the thanks will not show for those that did not give or recieve thanks..

pjkcards 03-20-2013 10:47 AM

Quote:

Originally Posted by Hippy (Post 2411127)
move thanks button
https://vborg.vbsupport.ru/showpost....postcount=1842
the icon should be there if your images are in the correct dir..
make sure you all the images to your custom style dir
youll need a vb:if condition so the thanks will not show for those that did not give or recieve thanks..

Thanks for the move, worked great.

As for the images: I uploaded the files as directed. Do I need to copy the images to somewhere? Where exactly do I need to copy them to?

As for the vb:if condition: what will the condition be such that you have to have at least 1 thank you for it to show?

Thanks again!

Hippy 03-20-2013 12:42 PM

do you have a custom style ?
well it would be something like images/styles/custom_name)/images/buttons
default is images/buttons/
something to that affect ...
where every you have them now you need to figure out where your buttons folder is and add them there for the style your using

Hippy 03-20-2013 10:27 PM

example for you
I work on a few sites with and a few have a couple different skins..

the default skin the images are in images/buttons
the custom style is like this

images/styles/vB_Black/buttons

so for each skin find the button folder and add the images post_thanks-hover.png and post_thanks.png
hope this helps

pjkcards 03-21-2013 05:33 PM

Quote:

Originally Posted by Hippy (Post 2411287)
example for you
I work on a few sites with and a few have a couple different skins..

the default skin the images are in images/buttons
the custom style is like this

images/styles/vB_Black/buttons

so for each skin find the button folder and add the images post_thanks-hover.png and post_thanks.png
hope this helps

Thanks for being specific. So I did this, and no luck. I also noticed that a lot of the buttons were in /images/[style name]/buttons
I copied those 2 icons into every one I could find - there are lots of custom styles (and many of them worked - the icon showed). Even when I go to the default theme, the icons aren't showing up (which they should since they are in the /images/buttons, right?).

One of the issues is that my custom theme was renamed in vBulletin Styles, so I'm not sure what directory it is under in the /images/ folder. Is there a way to find this out? I'm surprised my default theme or the default vB theme aren't working - the problem is similar.

As for the vb:if condition: what will the condition be such that you have to have at least 1 thank you for it to show?

Thanks!

glennybee 03-21-2013 07:21 PM

1 Attachment(s)
Hi folks,

I can appreciate there's lots of edits and versions floating around in this thread but I'll give it a go.

I'm using the version from this thread. (post_thanks_ version_7.83+integrated postbit_box collapse)

Here is a picture of my postbit...the "Thanked 0 Times in 0 Posts" bit is not the same style as the others.

Attachment 144212

Here's my post_thanks_postbit_info template...

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>{vb:rawphrase post_thanks_time_post}</dd>
    <vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
        <dd>{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>
    <vb:else />
        <dd>{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>

If anyone could help me out to get it looking the same as the other fields, I'd very much appreciate it.

Thanks! :)

Hippy 03-21-2013 10:34 PM

Quote:

Originally Posted by glennybee (Post 2411458)
Hi folks,

I can appreciate there's lots of edits and versions floating around in this thread but I'll give it a go.

I'm using the version from this thread. (post_thanks_ version_7.83+integrated postbit_box collapse)

Here is a picture of my postbit...the "Thanked 0 Times in 0 Posts" bit is not the same style as the others.

Attachment 144212

Here's my post_thanks_postbit_info template...

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>{vb:rawphrase post_thanks_time_post}</dd>
    <vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
        <dd>{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</dd>
    <vb:else />
        <dd>{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>

If anyone could help me out to get it looking the same as the other fields, I'd very much appreciate it.

Thanks! :)

it will never be .. because of the amount it can handle.. so it will vary

Hippy 03-21-2013 10:35 PM

Quote:

Originally Posted by pjkcards (Post 2411441)
Thanks for being specific. So I did this, and no luck. I also noticed that a lot of the buttons were in /images/[style name]/buttons
I copied those 2 icons into every one I could find - there are lots of custom styles (and many of them worked - the icon showed). Even when I go to the default theme, the icons aren't showing up (which they should since they are in the /images/buttons, right?).

One of the issues is that my custom theme was renamed in vBulletin Styles, so I'm not sure what directory it is under in the /images/ folder. Is there a way to find this out? I'm surprised my default theme or the default vB theme aren't working - the problem is similar.

As for the vb:if condition: what will the condition be such that you have to have at least 1 thank you for it to show?

Thanks!

can't help like this .. if you like send me a pm with access and I will fix it ..
as far as the if condition I will have to look into it .. not much time atm..

RFViet 03-22-2013 01:35 AM

1 Attachment(s)
Doesn't work with vB4.2 !


All times are GMT. The time now is 03:29 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.06782 seconds
  • Memory Usage 1,759KB
  • 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
  • (2)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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