This is really wierd....
When I use $vbulletin->userinfo[username] directly in the template, it gives me what I want, which is the name of the user's profile (member page) i'm visiting. The problem is I can not get this value outside of the template because it always defaults back to the user logged in.
For instance, I'm logged in as Bobby, visiting Mike's page. $vbulletin->userinfo[username] should output Mike, but it pulls Bobby every time.
Tried to echo out through a pluggin hooked to the menber_start or global_start using...
Code:
ob_start();
echo $vbulletin->userinfo[username];
$givearray = ob_get_contents();
ob_end_clean();
Still alway defaults to the user logged in. Need to somehow caputer this value to get it into my PHP code.
Looks like the variable for the url location is consitent with what I need. I'll back door this unless some can provide a better solution.
Code:
<?php
$findmember = $vbulletin->session->vars[location]; // pull url location from vbulletin 3.6.5
$memberid = (str_replace("/forums/member.php?u=","",$findmember)); // fix string to filter down to the user id
echo $memberid; // verfy the proper id was pulled and held in memberid
?>
I strugged with doing it through vB for 3 days. PHP backdoor 5 minutes. Hope this helps someone else. Happy hacking