Quote:
Originally Posted by TheLastSuperman
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.
|
If the user does not have signature (or have turn off the signature) then post thanks won't show up.