@thetalltree
12 years, 9 months ago
Hey guys, I have been searching for this info for nearly 2 days now without much luck.
I would like the user’s profile to show his website URL and his Messenger details (AIM, Yahoo etc.).
Currently the profile only shows the user’s name and the ‘description’.
Is there anyway to force the profile to display these additional details?
Any help would be greatly appreciated.
I was able to display website address in the profile by adding the following code to the ‘user-details’ file: (located under ‘bbpress > bbp-themes > bbpress > user-details.php’)
<?php echo bbp_get_displayed_user_field( 'user_url' ); ?>
But I am not able to do the same to display a user’s yahoo messenger, gtalk and AIM handles.
Also is there a way to display a user’s facebook page?
Ok was able to display the messeger IDs as well:
<?php echo bbp_get_displayed_user_field( ‘yim’ ); ?>
<?php echo bbp_get_displayed_user_field( ‘jabber’ ); ?>
Now I jst want to figure out how to add a custom field like facebook ID? Any help appreciated.