Quote:
Originally Posted by ForgotenDynasty
I second that. That would be awsome.
Having the posters avatar off to the left of his post
it would also be cool if the search box searched the forums as well as the blogs
and when you clicked usernames it went to their VB account im going to try to figure this out 
|
The search box can be configured to do this. You can have a check box or option choice for Blogs of Forums, and this can be edited in WP > Admin > Themes > Search Form
I will be trying to do this. It would also be good to maybe get Google Custom Search rather than doing that and leave it for a bit so Google indexes it..
The user names can go to the user profile anyway.. You could do
PHP Code:
Posted by <a href="/forums/members/<?php the_author(); ?>.html
So if Sarah posted, her avatar or her comment link will go to forums/members/sarah.html
To get this Re-Write rule.. in the forum root, open or make
.htaccess
Code:
## START MEMBERS PAGE ##
RewriteEngine On
RewriteRule ^/?(/[a-zA-Z0-9]+)$ member.php?username=$1 [L]
## END MEMBERS PAGE ##