PDA

View Full Version : Displaying postbit info in forumhome


ch3mical
09-02-2005, 10:25 PM
How can I display info from postbit like reputation, rank, location, etc in my forumhome? I have tried putting $post[reppower] into my forumhome code, but it just shows up blank.

Marco van Herwaarden
09-03-2005, 04:41 AM
The $post is only available when viewing posts. Use $bbuserinfo instead.

ch3mical
09-03-2005, 07:55 PM
I know postbit is only for viewing posts, but there must be a way to display that info on FORUMHOME.. When logged in, I want to display such things as a user's rep, rank, loaction etc, and $bbuserinfo does not have those.. Someone must know a way to do this.

Marco van Herwaarden
09-03-2005, 08:15 PM
$bbuserinfo['reputation']
Location: $bbuserinfo['field2']

.....

ch3mical
09-03-2005, 08:58 PM
$bbuserinfo['reputation']
Location: $bbuserinfo['field2']

.....

Thanks the rep one worked! However, how can I show user rep with the little images like in posts, instead of the actual numeric value? As well as the image I have set for users as their rank? These are both $post[reppower] and $post[rank] in postbit, but using $bbuserinfo[reppower], $bbuserinfo[reputationdisplay] and $bbuserinfo[rank] does nothing.

ch3mical
09-06-2005, 04:21 AM
anyone?

C Braithwaite
10-06-2006, 07:59 AM
i have been trying to figure this out for a while, and i dont know if this is the best way to do it, but i had to use the following code:

fetch_reputation_image($vbulletin->userinfo, $userperms);
$reputationpic = $vbulletin->userinfo[reputationdisplay];

and then place the $reputationpic in your template.