Part of the problem seems to be something fundamental... As it usually is
Everything in the configuration seems to be set up and working correctly, new entries are showing up in the designated vB forum as they should. Users logged into vB are able to access WP as they should and accounts are being created in the WP users correctly.
But when I create an entry logged into vB, the link to the author profile
Code:
<?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();
}
?>
doesn't happen. Instead the else kicks in and I just get the author's name. If I force the evaluation by changing it to
Code:
<?php
if (1 > 0) {
?>
<a href=<?php echo get_option('vbb_VBURL') ?>/member.php?u=<?php echo $vbridge[thread_starter] ?>><?php the_author() ?></a>
them I get a link:
Code:
http://www.ikeafans.com/forums/member.php?u=
Something's not quite right... I think I found where in the various files to add the Vbridge Replacement code for comments (not in comments.php :P ), but that doesn't work either. As you can tell I'm not really familiar with WP templates yet, but I think I'm close to getting everything to work, just have something simple that's not working.
Any assistance would be greatly appreciated and we'd be glad to donate appropriately. Thanks for such a great mod!
James and Susan