About the post above, i got it working by folowing this tutorial, which is not exactly like the readme instructions:
http://www.sisak.info/wp-content/plugins/readme.txt
The important part:
PHP Code:
Find in any of the following templates: index.php, single.php, page.php.
<!-- start post loop -->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
ADD the following code after it:
<?php
### Vbridge Call
$vbridge = Comment_Handler($post->ID);
###
?>
The author code:
PHP Code:
<?php the_author() ?>
You can replace that with something like:
<?php
if ($vbridge[id] > 0) {
?>
<a href=<?php echo get_option('vbb_VBURL') ?>/member.php?u=<?php echo $vbridge[thread_starter] ?>><?php the_author() ?></a>
<?php
}
else {
the_author();
}
?>