Thank you GameWizard and Opserty. I really appreciate you taking the time out. I will try both out!
--------------- Added [DATE]1206459379[/DATE] at [TIME]1206459379[/TIME] ---------------
Quote:
Originally Posted by GameWizard
[s]probably using .htaccess redirect.[/s]
The simplest way is using a javascript redirect. Replace the contents of the FORUMHOME template with this:
Code:
<script type="text/javascript">
<!--
window.location = "member.php?$session[sessionurl]u=$bbuserinfo[userid]"
//-->
</script>
|
Quote:
Originally Posted by Opserty
Or.... create a Plugin hooked to the member.php file that automatically detects the UserID (if the person is logged in) and uses that as the variable. i.e.:
PHP Code:
if($vbulletin->userinfo['userid']) { $_GET['u'] = $vbulletin->userinfo['userid']; }
Or something like that. Remember to cater for guests if necessary.
|
Thank you GameWizard and Opserty. I really appreciate you taking the time out. I will try both out!