Re: Make URLs in User Profile answers hyperlink
There are some easy hacks, one could be as simple as
‘
remove_filter( ‘bp_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 2);
add_filter( ‘bp_the_profile_field_value’, ‘bp_profile_link_profile_data_with_urls’, 2, 3); ‘
Then create a function, similar to xprofile_filter_link_profile_data, but have it search for substr($field_value,0,7) = “http://”, then create a normal hyperlink, not a buddypress link
Just a thought,
Brad