The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#5
|
|||
|
|||
![]()
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(); ![]() 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 ?> ![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|