PDA

View Full Version : post thanks 7.7 button problom very detailed


RyanFabbro
09-06-2012, 02:12 PM
ok so i have a very custom skin im working on, and my buttons dont use images i use css. i have my buttons exactally how i like them but when i install post thanks they mess up i came up with a fix for this issue by removing
$template_hook[postbit_controls]
from the postbit and hardcoding the button in, but the problom is with this way the thanks button still displays weather the post thanks is set to first post only, off ect ect..

i cant figure out the proper if statements to place around the button, i searched
includes/functions_post_thanks.php
and i know thats the right place, i found all of them there the only problom is i dont know how to convert those type of if statements into vB.

so unless anyone could help me come up with the proper if statements to place around the button heres the other thing i did, i left
]$template_hook[postbit_controls]
in the postbit and just edited the
Post Thank You Hack Templates>post_thanks_button

and made that the css button, but when i do these it creates a space in btween the buttons and doesnt look right.
https://vborg.vbsupport.ru/attachment.php?attachmentid=141049&stc=1&d=1346943973

the thing with my buttons are theyre cant be any spaces ie the code has to be all one line with every button together or else they all have spaces here is my postbit buttons code:
<!-- controls -->
<if condition="$post['editlink']"><img style="display: none" id="progress_$postid" src="$stylevar[imgdir_misc]/progress.gif" alt="$vbphrase[loading_editor_please_wait]" /><a rel="nofollow" class="left pill button" href="$post[editlink]" name="vB::QuickEdit::$post[postid]"><span class="edit icon"></span>Edit</a></if>$template_hook[postbit_controls]<if condition="$post['forwardlink']"><a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a></if><if condition="$post['replylink']"><a class="middle pill button" href="$post[replylink]" rel="nofollow"><span class="quote icon"></span>Quote</a></if><!--<if condition="$show['multiquote_post']"><a href="$post[replylink]" rel="nofollow" onclick="return false"><img src="$stylevar[imgdir_button]/multiquote_<if condition="$show['multiquote_selected']">on<else />off</if>.gif" alt="$vbphrase[multi_quote_this_message]" border="0" id="mq_$post[postid]" /></a></if>--><if condition="$show['quickreply'] AND !$show['threadedmode']"><a class="right pill button" href="$post[replylink]" rel="nofollow" id="qr_$post[postid]" onclick="return false"><span class="kr_reply icon"></span>reply</a></if><if condition="$show['moderated']"><img src="$stylevar[imgdir_misc]/moderated.gif" alt="$vbphrase[moderated_post]" border="0" /></if><if condition="$show['spam']"><img src="$stylevar[imgdir_misc]/spam_detected.png" alt="$vbphrase[spam_post]" border="0" /></if><if condition="$show['deletedpost']"><if condition="$show['managepost']"><a href="postings.php?$session[sessionurl]do=managepost&amp;p=$post[postid]"><img src="$stylevar[imgdir_misc]/trashcan.gif" alt="$vbphrase[manage]" border="0" /></a><else /><img src="$stylevar[imgdir_misc]/trashcan.gif" alt="$vbphrase[deleted_post]" border="0" /></if></if><if condition="$show['redcard']"><a href="infraction.php?$session[sessionurl]do=view&amp;p=$post[postid]"><img src="$stylevar[imgdir_button]/redcard.gif" alt="$vbphrase[received_infraction]" border="0" /></a><else /><if condition="$show['yellowcard']"><a href="infraction.php?$session[sessionurl]do=view&amp;p=$post[postid]"><img src="$stylevar[imgdir_button]/yellowcard.gif" alt="$vbphrase[received_warning]" border="0" /></a></if></if>
<!-- / controls -->

notice how compact it is, thats how i had to do it to prevent spaces like the image.
note
$template_hook[postbit_controls]
is were the thanks button will appear and that too i have squeezed into the code tight, but still it creates a space as the image shows.

here is my thanks button code
<a class="middle pill button" href="post_thanks.php?$session[sessionurl]do=post_thanks_add&amp;p=$post[postid]&amp;securitytoken=$bbuserinfo[securitytoken]" id="post_thanks_button_$post[postid]"<if condition="$vboptions[disable_ajax] != 2"> onclick="return post_thanks_give($post[postid], <if condition="$vboptions[post_groan_integrate]">true<else />false</if>);"</if> <if condition="$display_thanks_image == 'none'">style="display:none"</if> rel="nofollow"><span class="post_thanks icon"></span>Thanks</a>

again i kept it all very tight, but i cant seem to get rid of that darn space for anything, unless i hardcode it into the postbit but i already explained the probloms with that.

sorry if this was too much i just figured the more details i could provide the better/faster responces i would get :D

excuse the spelling im a fast typer and dont like to look back :p

kh99
09-06-2012, 07:55 PM
I can't help you with the if statements (but I suppose you're looking for someone who knows about that mod). As for the space, I usually use FireFox with Firebug and right click to inspect the element (actually you might be able to do it in FF or Chrome without FireBug). That way you can figure out if it's a space in the code or if it's margin or padding on one of the elements.

Lynne
09-06-2012, 08:31 PM
If I were you, I'd modify the plugin that adds the button. Replace their code for the button with your code for the button and then the conditions that exist in the plugin will still be there. If you need to know what plugin to modify, you will need to ask in the modification thread.

RyanFabbro
09-07-2012, 06:03 AM
still wont let me like your posts kh lol but thank you both, i will play around with it a little more and see if i can come up with something