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 03-02-2012 10:00 PM

Quote:

Originally Posted by temsamane (Post 2305299)
i dont want the guests see this mod, so they cant see who's thanks a post (for seo)

how can i do this? with an if condition?

in permissions you'll find where you can edited how can view..

Quote:

Originally Posted by HHelp1 (Post 2305492)
I have a question and it's umm in some styles i can see thumb up at thanks button which is here https://vborg.vbsupport.ru/ but some style i dont it which is here https://vborg.vbsupport.ru/ any help please?

make sure you have it in that styles correct dir ..

HHelp1 03-02-2012 10:22 PM

Quote:

Originally Posted by Hippy (Post 2305494)
in permissions you'll find where you can edited how can view..



make sure you have it in that styles correct dir ..

Where may i check ?

Hippy 03-02-2012 10:50 PM

sorry I thought there was some kind of permissions under usergroups for this .. but there isn't
I am not sure on this one..
you can make a vb:if condition I am sure so nothing will display for guests ..
I am swamped but I will look into it

HHelp1 03-02-2012 11:09 PM

Quote:

Originally Posted by HHelp1 (Post 2305492)
I have a question and it's umm in some styles i can see thumb up at thanks button which is here http://screensnapr.com/e/ue37ay.png but some style i dont it which is here http://screensnapr.com/e/hZckwN.png any help please?

Any help?

temsamane 03-03-2012 12:53 AM

Quote:

Originally Posted by Hippy (Post 2305505)
sorry I thought there was some kind of permissions under usergroups for this .. but there isn't
I am not sure on this one..
you can make a vb:if condition I am sure so nothing will display for guests ..
I am swamped but I will look into it

can you help us please Hippy

there is no kind of permissions to hide this mod for guests. I know its possible with if condition, but i dont know how. i tried a lot of things, but it was still showing for guests.

i will appreciate your support

Hippy 03-03-2012 03:16 AM

Quote:

Originally Posted by temsamane (Post 2305299)
i dont want the guests see this mod, so they cant see who's thanks a post (for seo)

how can i do this? with an if condition?

Quote:

Originally Posted by temsamane (Post 2305545)
can you help us please Hippy

there is no kind of permissions to hide this mod for guests. I know its possible with if condition, but i dont know how. i tried a lot of things, but it was still showing for guests.

i will appreciate your support

ok ok ..
first so guest can't see the post thanks box under each post
replace your "post_thanks_box" template with this code
Code:

<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:if condition="$bbuserinfo['userid'] != 0">{vb:raw post_thanks_box}</vb:if>
</li>

now, so quests can't see the postbit info under your avatar open up "post_thanks_postbit_info" template

and replace it with this code
Code:

<vb:if condition="$bbuserinfo['userid'] != 0">
<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>
</vb:if>

:eek:
let me know if I missed something

temsamane 03-03-2012 10:13 AM

Quote:

Originally Posted by Hippy (Post 2305578)
ok ok ..
first so guest can't see the post thanks box under each post
replace your "post_thanks_box" template with this code
Code:

<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:if condition="$bbuserinfo['userid'] != 0">{vb:raw post_thanks_box}</vb:if>
</li>

[/code]

:eek:
let me know if I missed something

This is not working for me, it messed up the lay-out of the first post.

In post_thanks_box i have this code:

PHP Code:

<div <vb:if condition="!$post_thanks_box == 1"style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin:  

0px auto 0px auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;display:none" 
<vb:else />  
style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 0px auto 0px auto; -webkit-border-radius: 5px; - 

moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;" 
</vb:if> id="post_thanks_box_{vb:raw post.postid}"
{
vb:raw post_thanks_box
</
div

its from https://vborg.vbsupport.ru/showpost....7&postcount=35 (to turn this mod into a like system similar to vb.org)

is it possible to modify this code, so the guests not seeing this mod?

Hippy 03-03-2012 11:34 AM

not test so you will have to


try this first

Code:

<div <vb:if condition="!$post_thanks_box == 1"> style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 

0px auto 0px auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;display:none" <vb:else /> 
style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 0px auto 0px auto; -webkit-border-radius: 5px; -

moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;"
</vb:if> id="post_thanks_box_{vb:raw post.postid}">
<vb:if condition="$bbuserinfo['userid'] != 0">{vb:raw post_thanks_box} <vb:if>
</div>

then try this if the first one doesn't work
if this does not work I will have to add your changes and test..
Code:

<vb:if condition="$bbuserinfo['userid'] != 0">
 <div <vb:if condition="!$post_thanks_box == 1"> style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 

0px auto 0px auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;display:none" <vb:else /> 
style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 0px auto 0px auto; -webkit-border-radius: 5px; -

moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;"
</vb:if> id="post_thanks_box_{vb:raw post.postid}">
{vb:raw post_thanks_box}
</div><vb:if>


Emeralda 03-03-2012 11:55 AM

I don't know what I'm doing wrong. I've uploaded the 7.83 version, then tried 7.82fixed, put all the files in the right place and.... nothing.

http://img851.imageshack.us/img851/7...0749893ad1.png

I tried it on two forums with 4.1.10, and it doesn't work on the second one. I'm not sure what I'm doing wrong.

temsamane 03-03-2012 12:05 PM

Quote:

Originally Posted by Hippy (Post 2305648)
not test so you will have to


try this first

Code:

<div <vb:if condition="!$post_thanks_box == 1"> style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 

0px auto 0px auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;display:none" <vb:else /> 
style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 0px auto 0px auto; -webkit-border-radius: 5px; -

moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;"
</vb:if> id="post_thanks_box_{vb:raw post.postid}">
<vb:if condition="$bbuserinfo['userid'] != 0">{vb:raw post_thanks_box} <vb:if>
</div>

then try this if the first one doesn't work
if this does not work I will have to add your changes and test..
Code:

<vb:if condition="$bbuserinfo['userid'] != 0">
 <div <vb:if condition="!$post_thanks_box == 1"> style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 

0px auto 0px auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;display:none" <vb:else /> 
style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 0px auto 0px auto; -webkit-border-radius: 5px; -

moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;"
</vb:if> id="post_thanks_box_{vb:raw post.postid}">
{vb:raw post_thanks_box}
</div><vb:if>


i'm srry, they both not working. When i save this edits, i get the error

Code:

The following error occurred when attempting to evaluate this template:
Unclosed Tag


and above the template i see:

Code:

Parse error: syntax error, unexpected ')' in /home/mydirectory/forums/includes/class_core.php(4623) : eval()'d code on line 11
and i tested with guests and registered members but they all not seeing this post thank you hack.

( i can also give you access to my forum, to test it)

michal72 03-03-2012 12:26 PM

Hippy solution is perfect and working. Just small mistake. :)

Code:

<vb:if condition="$bbuserinfo['userid'] != 0">
 <div <vb:if condition="!$post_thanks_box == 1"> style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 

0px auto 0px auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;display:none" <vb:else /> 
style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 0px auto 0px auto; -webkit-border-radius: 5px; -

moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;"
</vb:if> id="post_thanks_box_{vb:raw post.postid}">
{vb:raw post_thanks_box}
</div></vb:if>


temsamane 03-03-2012 12:37 PM

Quote:

Originally Posted by michal72 (Post 2305677)
Hippy solution is perfect and working. Just small mistake. :)

Code:

<vb:if condition="$bbuserinfo['userid'] != 0">
 <div <vb:if condition="!$post_thanks_box == 1"> style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 

0px auto 0px auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;display:none" <vb:else /> 
style="background-color: #f2f6f8; border: 1px ridge #417394; border-width: 1px 1px 1px 1px; padding: 2px; width:92%; margin: 0px auto 0px auto; -webkit-border-radius: 5px; -

moz-border-radius: 5px; border-radius: 5px; margin-top:10px; margin-bottom:0px;"
</vb:if> id="post_thanks_box_{vb:raw post.postid}">
{vb:raw post_thanks_box}
</div></vb:if>


that's the right code! thank you michal72! :D

and thank you hippy for your time!

Hippy 03-03-2012 12:39 PM

yeah I forgot to close the vb:if
he no morning coffee yet
thanks for pointing that out michal72

your welcome

HHelp1 03-03-2012 12:46 PM

Any help plz ? https://vborg.vbsupport.ru/showpost....postcount=2325

michal72 03-03-2012 12:56 PM

Quote:

Originally Posted by HHelp1 (Post 2305687)

You need to copy two files: post_thanks-hover.png and post_thanks.png to images/buttons directory of each of your styles

tareqbd 03-03-2012 01:03 PM

mobile user can see thanks button in Dartho's mobile style but they has to click the thanks button many times, also need to refresh the page to view the content posted inside . please let me know what to do.
Thanks.

northvanmike 03-04-2012 01:59 PM

it installs, but when i go to a thread, database error.

is this related to our servers MySQL version updates recently?

Code:

Database error in vBulletin 4.1.10:

Invalid SQL:
SELECT * FROM nikon_post_thanks AS post_thanks INNER JOIN nikon_user AS user USING (userid) WHERE post_thanks.postid IN (0Array) ORDER BY post_thanks.username ASC;

MySQL Error  : Unknown column '0Array' in 'where clause'
Error Number  : 1054
Request Date  : Sunday, March 4th 2012 @ 09:55:47 AM
Error Date    : Sunday, March 4th 2012 @ 09:55:47 AM
Script        : http://www.canadian-photographer.ca/forums/showthread.php?t=16173
Referrer      : http://www.canadian-photographer.ca/forums/forumdisplay.php?f=44
IP Address    : 174.7.113.111
Username      : N.V.M.
Classname    : vB_Database
MySQL Version : 5.1.56-log


Fangs404 03-04-2012 07:12 PM

Thought someone might find this useful. The way thanks is used on the forums I run is that I like the thread to be bumped each time thanks is hit (so, thanks functions just like reply but without cluttering up the thread with useless posts). This is all it takes to make that happen:

In post_thanks.php, find this chunk of code:

PHP Code:

add_thanks($postinfo);

(
$hook vBulletinHook::fetch_hook('post_thanks_main_add_thanks_end')) ? eval($hook) : false

Add the following chunk of code between those two lines:

PHP Code:

//bump thread when user hits thanks
$threadman =& datamanager_init('Thread'$vbulletinERRTYPE_ARRAY'threadpost');
$threadman->set_existing($threadinfo);
$threadman->set('lastpost'TIMENOW);
$threadman->save(); 

That's it!

mugz 03-04-2012 07:30 PM

Hi thanks for this mod I just upgraded my forum and now does not work I tried to remove the mod and install now getting the below error

Quote:

The following dependencies were not met:
This product is not compatible with version 4.1.11 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)
Will there be any updates for it to work?

ForceHSS 03-04-2012 07:57 PM

my sig

mugz 03-04-2012 08:06 PM

Quote:

Originally Posted by ForceHSS (Post 2306175)
my sig

Thanks for your quick reply thats it now installed.

Thank you:up:

northvanmike 03-04-2012 09:56 PM

i am having no luck. :(

uninstalled, darn it!

ForceHSS 03-05-2012 01:59 AM

Quote:

Originally Posted by northvanmike (Post 2306224)
i am having no luck. :(

uninstalled, darn it!

after checking your forums you dont have the new version installed it is still showing you have the old one uninstall plugin delete all files you uploaded to ftp and install the new files and plugin

northvanmike 03-05-2012 02:38 AM

thanks for the response. yes, i've uninstall the plugin, and i do see old files at the server.

i'm trying to restore this addon as the actual owner of the site inherited the forum with the addon installed, but that was before previous versions of vBulletin.

which files i have to remove on the server i have no idea. i suppose i'll have to hire somebody, its too scary for me.

ForceHSS 03-05-2012 05:48 AM

you dont need to hire someone if you download the plugin you will see what files to remove if you have a problem pm me will help. You also need to update the new tabs plugin link in my sig for the updated one as well

pcg 03-05-2012 07:59 AM

I m getting the same error. I have 4.1.11.

The following dependencies were not met:
This product is not compatible with version 4.1.11 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

iyama 03-05-2012 09:43 AM

Quote:

Originally Posted by pcg (Post 2306316)
I m getting the same error. I have 4.1.11.

The following dependencies were not met:
This product is not compatible with version 4.1.11 of vBulletin. (Compatible starting with 4.0.0 beta 4 / Incompatible with 4.1.0 alpha 1 and greater)

Change in the xml the version to 4.x.x

iyama 03-05-2012 09:44 AM

Question:
I have the hide hack.
Is it possibel to refresh the page after thanks?

Mackeral_Fillet 03-05-2012 10:42 AM

Quote:

Originally Posted by Hippy (Post 2299746)
if your talking about the thanks button.. you can open your postbit
or postbit_ledgen

find
Code:

{vb:raw template_hook.postbit_controls}
and move it just below
Code:

<span class="postcontrols">
for
postbit_legacy
move the same code below
Code:

<div class="textcontrols floatcontainer">
                                <span class="postcontrols">

or I can make a new hook to add in this place so you don't have to move that one .. but you need to change something else so it works..

this is most of the time good .. I don't know amy mods that use it ..
and if they do noone want it there anyway ..


Hi.

I tried this on my forum http://ducatiforum.co.uk but it didn't seem to work. All the buttons moved to the left after this edit.


Is there another way to move the Thanks button to the right hand side, next to Reply?

Thanks.

pcg 03-05-2012 02:42 PM

Quote:

Originally Posted by iyama (Post 2306343)
Change in the xml the version to 4.x.x

I did this. Now I get this:


The following dependencies were not met: 1.This product is not compatible with version 4.1.11 of vBulletin. (Compatible starting with 4.1.11 / Incompatible with 4.1.11 and greater)

DS MrSinister 03-05-2012 02:58 PM

Quote:

Originally Posted by pcg (Post 2306429)
I did this. Now I get this:


The following dependencies were not met: 1.This product is not compatible with version 4.1.11 of vBulletin. (Compatible starting with 4.1.11 / Incompatible with 4.1.11 and greater)

Just download the one in ForceHSS sig.

TheDevil666Damo 03-05-2012 04:05 PM

How easy is it to move the Thanks button? In the latest version of vbulletin there is the LIKE system, would be nice to have the Thanks as a text link next to the Like text, is this possible?

BirdOPrey5 03-05-2012 06:51 PM

Quote:

Originally Posted by TheDevil666Damo (Post 2306451)
How easy is it to move the Thanks button? In the latest version of vbulletin there is the LIKE system

that is news to me...

TheDevil666Damo 03-06-2012 09:22 AM

Quote:

Originally Posted by BirdOPrey5 (Post 2306507)
that is news to me...

Actually I think it is part of VBSEO, would be good though, as whether you 'like' a post or would like to 'thank' someone for their useful post would be in the same place.

Hippy 03-06-2012 09:34 PM

Quote:

Originally Posted by Mackeral_Fillet (Post 2306356)
Hi.

I tried this on my forum http://ducatiforum.co.uk but it didn't seem to work. All the buttons moved to the left after this edit.


Is there another way to move the Thanks button to the right hand side, next to Reply?

Thanks.

either you edited wrong or there is other mods you hav that might be conflicking ..

this works 100% with out 1 issue..
I will write up a new hook and explain what you need to do tonight..
so post thanks will have it's own hook.. and the rest of the ( other buttons will remain) they must be other mods using the same hook..

Hippy 03-06-2012 09:52 PM

Quote:

Originally Posted by Mackeral_Fillet (Post 2306356)
Hi.

I tried this on my forum http://ducatiforum.co.uk but it didn't seem to work. All the buttons moved to the left after this edit.


Is there another way to move the Thanks button to the right hand side, next to Reply?

Thanks.

Go to Plugiins & Products

then click on plugin manager

Look under post thank you hack.

find the one that says " postbit_display_complete "
open it up and look for

Code:

    $templater = vB_Template::create('post_thanks_button');
    $templater->register('post', $post);
    $templater->register('display_thanks_image', $display_thanks_image);
    $template_hook['postbit_controls'] .= $templater->render();


and replace it with

Code:

    $templater = vB_Template::create('post_thanks_button');
       
    $templater->register('post', $post);
       
    $templater->register('display_thanks_image', $display_thanks_image);
       
    $template_hook['postbit_thanks'] .= $templater->render();

Now go to postbit_legacy

since your using postbit_legacy template
find

Code:

div class="textcontrols floatcontainer">
                                <span class="postcontrols">

and add uder that code

Code:

{vb:raw template_hook.postbit_thanks}

and for those that are useing " postbit template "

add
Code:

{vb:raw template_hook.postbit_thanks}
under
Code:

<span class="postcontrols">
enjoy

DeadCode 03-08-2012 01:34 AM

Not compatible with 4.1.11

Hippy 03-08-2012 03:30 AM

<a href="https://vborg.vbsupport.ru/showpost.php?p=2249550&postcount=1847" target="_blank">https://vborg.vbsupport.ru/showp...postcount=1847</a>

raj4x 03-08-2012 07:41 AM

Quote:

Originally Posted by DeadCode (Post 2307297)
Not compatible with 4.1.11

Works fine here on 4.1.11.

attroll 03-08-2012 05:31 PM

Wow, there are a lot of posts to read through for this Mod. I read quite a few pages but could not find the answer I was looking for, maybe there was so many post I overlooked it.

I know you can find find out how many Thanks I have given or a particular user has given by looking at there About Me page.

But how can I look and find out what posts that users has Thanked or I have Thanked?
Is this possible?


All times are GMT. The time now is 03:02 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.06127 seconds
  • Memory Usage 1,885KB
  • 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
  • (21)bbcode_code_printable
  • (3)bbcode_php_printable
  • (23)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