Quote:
Originally Posted by Antivirus
Joel, that works really nicely for FORUMHOME, but I am trying to get it to work in the MEMBERINFO template and using hook location member_complete and it's returning my profile's data, not the member who's profile i am viewing...
Thanks!
|
The line that has this:
Code:
if ($vbulletin->userinfo[field7] & pow(2,$key))
Is what you need to modify. The var $vbulletin->userinfo[field7] is only the current logged in user's information.
What you need to do is query for that users profile fieldX values.
In memberinfo, only hidden field aren't already decoded... So I'm not sure what you want to do exactly, but you could make sure they are not hidden and vB already will display the correct values for that user in their profile.
If you really need this in member info, you could add a query using a plugin at member_customfields, something to this effect:
Code:
$my_qry = $db->query_read("select userfield.field7 where " . TABLE_PREFIX ." userfield as userfield where userfield.userid = " . $userinfo['userid'].";" );
Then pull that data out in a variable, and put that in place of the code above where $vbulletin->userinfo[field7] is used... Like so:
Code:
$my_profilefield_data = $db->fetch_array($my_qry);
if ($my_profilefield_data[field7] & pow(2,$key))
{
....
}
Hope that helps.
Joel