I noticed that qa-page-user.php displays the user profile fields with a foreach ($userfields as $userfield) Loop and then a qa_content array.
Is there a way to concatenate two user profile fields, so they are displayed together as opposed to on two different rows (e.g. Name - Location)?
Basically, i guess my question boils down to, is there a function that displays the value for a specific field? I thought maybe it was something like qa_html(@$userprofile[$userfield['location']]); - would display the location. But that doesn't work. So how would I access the value of a specific profile field, outside of a loop on qa-page-user.php?
Also, why does the qa_content array always throw a table? Is there some sort of value to put in the qa_content array, so that it doesn't design a table with the data or are all arrays immediately designed as tables?