Quote:
Originally Posted by Tigratrus
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=

|
Just bumping again to see if there's a fix for the author link not working.
Thanks!