vb.org Archive

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

vspro 07-26-2007 10:49 AM

How i can change place for the Thanks button ?? i want it beside the Edit Button

chiwexa 07-27-2007 12:41 PM

Quote:

Originally Posted by chiwexa (Post 1296617)
Thank you. Another question:

I don't see a border around the Thanks-Box in the postbit_legacy, but in postbit I do.

post_thanks_postbit:

Code:

<div style="padding:0px 0px 0px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt2" style="padding:0px">
<if condition="$post['post_thanks_amount'] == 1"><strong><phrase 1="$post[username]">$vbphrase[post_thanks_user_says]</phrase></strong>
<else /><strong><phrase 1="$post[post_thanks_amount_formatted]" 2="$post[username]">$vbphrase[post_thanks_users_say]</phrase></strong></if>
</td>
<if condition="$bbuserinfo['usergroupid'] == 6"><td class="alt2" style="padding:0px" align="right" nowrap="nowrap">
<a href="post_thanks.php?do=post_thanks_remove_all&amp;p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2"> onclick="post_thanks_remove_all($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove]</a>
</td></if>
<if condition="$post['show_thanks_remove_option']"><td class="alt2" style="padding:0px" align="right" nowrap="nowrap">
<a href="post_thanks.php?do=post_thanks_remove_user&amp;p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2"> onclick="post_thanks_remove_user($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove_user]</a>
</td></if>
</tr>
<tr><td class="alt1" colspan="3"><div>$post[post_thanks_bit]</div></td></tr>
</table>
</div>


post_thanks_postbit_legacy no Border?!


Code:

<div style="padding:0px 0px 0px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr valign="top">
<td class="alt2" width="162">
<if condition="$post['post_thanks_amount'] == 1"><strong><phrase 1="$post[username]">$vbphrase[post_thanks_user_says]</phrase></strong>
<else /><strong><phrase 1="$post[post_thanks_amount_formatted]" 2="$post[username]">$vbphrase[post_thanks_users_say]</phrase></strong></if>
<if condition="$bbuserinfo['usergroupid'] == 6"><br />
<a href="post_thanks.php?do=post_thanks_remove_all&amp;p=$post[postid]"<if condition="$vboptions[disable_ajax] != 2"> onclick="post_thanks_remove_all($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove]</a>
</if>
<if condition="$post['show_thanks_remove_option']"><br />
<a href="post_thanks.php?do=post_thanks_remove_user&amp;p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2"> onclick="post_thanks_remove_user($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove_user]</a>
</if>
</td>
<td class="alt1">
<div>$post[post_thanks_bit]</div>
</td>
</tr>
</table>
</div>



Anyone?
:(

dricho 07-27-2007 06:29 PM

This is fantastic, easy and valuable on my style of forum...thanks to you!

CityGuard 07-27-2007 07:37 PM

Abe1, this is a very cool hack and we'd like to implement it in our forum. Per post 1428 we're getting a strange error when attempting installation -- strange only because we're using 3.6.7 patch 1. Any clue why the installation system would be confused about which version of vBulletin we are using or what I can do to solve it?

Quote:

The following dependencies were not met:

This product is not compatible with version 3.6.5 of vBulletin. (Compatible starting with 3.6.7)

duditas 07-27-2007 08:29 PM

I have the same problem.

https://vborg.vbsupport.ru/attachmen...0&d=1184925775

Quote:

Originally Posted by Abe1 (Post 1296453)
Edit the post_thanks_postbit template. Look at one of the first things in there. I think you have to change a number from 5 to 0.

But what 5? I can't see any :(

post_thanks_postbit
Code:

<div style="padding:$stylevar[cellpadding]px 0px 0px 0px">
        <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
                <tr>
                        <td class="alt2" style="padding:0px">
                                <if condition="$post['post_thanks_amount'] == 1">
                                        <strong><phrase 1="$post[username]">$vbphrase[post_thanks_user_says]</phrase></strong>
                                <else />
                                        <strong><phrase 1="$post[post_thanks_amount_formatted]" 2="$post[username]">$vbphrase[post_thanks_users_say]</phrase></strong>
                                </if>
                        </td>
                        <if condition="$bbuserinfo['usergroupid'] == 6">
                                <td class="alt2" style="padding:0px" align="right" nowrap="nowrap">
                                        <a href="post_thanks.php?do=post_thanks_remove_all&amp;p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2"> onclick="post_thanks_remove_all($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove]</a>
                                </td>
                        </if>
                        <if condition="$post['show_thanks_remove_option']">
                                <td class="alt2" style="padding:0px" align="right" nowrap="nowrap">
                                        <a href="post_thanks.php?do=post_thanks_remove_user&amp;p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2"> onclick="post_thanks_remove_user($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove_user]</a>
                                </td>
                        </if>
                </tr>
                <tr><td class="alt1" colspan="3"><div>$post[post_thanks_bit]</div></td></tr>
        </table>
</div>


chiwexa 07-28-2007 10:15 AM

Heyho,

you have to edit the first line:

Search this:
Code:

<div style="padding:$stylevar[cellpadding]px 0px 0px 0px">
Replace it with:
Code:

<div style="padding:0px 0px 0px 0px">

belinea 07-28-2007 08:13 PM

Does someone have a German language pack for this hack?

princeedward 07-28-2007 11:29 PM

dunno why is it my thanks button position is at the right place.....as far as i know...it should be at the left side...right?...
maybe anyone from you guys or abe can help me to put it to the left place...please view my attachment below...

thanks and best regards to all...

:confused:

InuyashaXTC 07-29-2007 03:20 AM

Thanks for the hack. I got this to work on vBulletin 3.6.8 default's skin, but not on other custom skins.

The only thing that show up in the source of the postbit is the line:

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

All the other lines corresponding to the post thanks simply wouldn't show up. How would I go about manually changing the templates to get the hack to work on these custom skins?

ABDALWAHID 07-29-2007 08:06 AM

Hi,

i have a problem

i have this mod installed.

first post 1 thanks button and on profil 1 info
second post 2 thanks button and on profil 2 info
and 3 and 4....

hiere my screenshots

what is my problem?

regard


All times are GMT. The time now is 11:26 PM.

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.04421 seconds
  • Memory Usage 1,766KB
  • 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
  • (5)bbcode_code_printable
  • (3)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