Hiya Bill,
Do you think this could work as a wrapper in WordPress, where we use your authentication system to require people to authenticate against vB before they're allowed to post comments?
I can easily extend WordPress' comment section and would like to do something like (pseudo code obviously):
Code:
<?php
if (!not_vb_authenticated) {
echo 'Please login with your forum username and password first';
} else {
comments_template('', true);
?>
Would it display the forum's username (if echoed correctly) or do we need the deluxe version for that? (which sounds like a better solution anyway, since I'd like to use the avatars as well). I don't care so much about all the other vB stuff, but would love to have this as a simple vB powered authentication system inside WordPress.