Quote:
Originally Posted by thetechgenius
I would like to move the Thanked users box below the signature. Right now its below the post, I think it would look much cleaner inside the posts, below the signature.
Does anyone know how to do this? I am running vB 4.1.4.
|
I noticed your post here as well:
https://vborg.vbsupport.ru/showthread.php?p=2521457
Edit the .xml, scroll to find (around line 206):
Code:
$templater = vB_Template::create('post_thanks_box');
$templater->register('post', $post);
$templater->register('post_thanks_box', $post_thanks_box);
$template_hook['postbit_end'] .= $templater->render();
}
Change this line:
Code:
$template_hook['postbit_end'] .= $templater->render();
To:
Code:
$template_hook['postbit_signature_end'] .= $templater->render();
Basically as you can see we simply added _end but that changes the location of where it inserts the thanks box.
Edit: Also not sure if it makes a difference, perhaps on the line in the .xml file being 206 or not lol but I was referencing a change to the .xml file from this post:
https://vborg.vbsupport.ru/showthrea...50#post2249550 the one w/ the search fix included.