Long story short there are two custom fields I want to present as hyperlinks in my user's profiles.
For example, say you have a field called "twitterhandle", they put in "jpstadtlander" and another profile field called "facebookhandle" which they might put "jpstadtlander" (these are my twitter and FB by the way).
I want to have something, I'm guessing in the BxBaseProfileView that says something along the lines (obviously the syntax is wrong as I don't know where it's cycling through the array of fields):
switch ($arrayname['title'])
case 'facebookhandle':
$FieldValue = '<a href="https://facebook.com/[fieldvalue for facebookhandle]">' . [fieldvalue for facebookhandle] . '</a>'
break;
case 'twitterhandle':
$FieldValue = '<a href="https://twitter.com/[fieldvalue for facebookhandle]">' . [fieldvalue for facebookhandle] . '</a>'
break;
default:
break;
}