How do I add additional information form profile to "all about %user" panel (I want to add stuff like location, contact info etc.)? So far it only shows join date and online status. I'm using bio btw.

Comments

Robert_K’s picture

Status: Active » Closed (fixed)

I figured it out :)
Just add something like this to advanced_profile_userinfo.tpl.php:

$bio = bio_for_user($account->uid);
$node = node_load($bio);
print $node->field_location[0]['value']; 

(I think you should document this in advanced_profile_userinfo.tpl.php comment. It's kinda basic, but can be a bitch to figure out if you're new to this stuff)