Quote:
Originally Posted by Hippy
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
|
Thanks but it still moves everything to the left!!
Not sure what to do now?