Love the new profile features and the ability to link to external profile programs, but I have an issue with buddypress profiles, as buddypress, like wordpress, uses pretty urls and not php post or get variables.
BuddyPress builds a dynamic page based on the URL detected, much like SPF does with groups and forums, but there is no way to change the url in buddypress… the url's are hard coded into the site.
BuddyPress list profiles page:
/members/
View User Profile:
/members/<loginname>
users profile edit page:
/members/<loginname>/edit
I'd love to simply be able to tell SPF to link to these URLs
also… BuddyPress Core adds a different Avatar routine:
bp_core_get_avatar( $user, $version = 1, $width = null, $height = null, $no_tag = false )
returns Avatar URL
where $user=ID and $version = 1 (thumbnail 50×50) or 2(full size default 150×150), $height and $width override $version 2 default, $no_tag = false (returns img tag populated) or true (raw url to image)