Quote:
Originally Posted by Mackeral_Fillet
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