one bug in this
similar threads showing after all posts .. not just 1st post
similar threads visible under 1st, 2nd, 3rd ..etc posts
i found a quick fix for this
go to plugin manager
open HQTH Smiliar Thread - Postbit Display Complete
replace
Code:
if ($similarthreadbits)
{
$templater = vB_Template::create('showthread_similarthreads');
$templater->register('similarthreadbits', $similarthreadbits);
$template_hook[postbit_end] .= '<div id="thread_info" class="thread_info">'.$templater->render().'</div>';
}
by
Code:
if ($similarthreadbits && $post['isfirstshown'])
{
$templater = vB_Template::create('showthread_similarthreads');
$templater->register('similarthreadbits', $similarthreadbits);
$template_hook[postbit_end] .= '<div id="thread_info" class="thread_info">'.$templater->render().'</div>';
}
Now similar threads show only below first post
thanks for this hack