You can try something like this in the usercp_viewprofile.php file:
Code: Select all
if ( !empty($profiledata['user_maidenname']) )
{
$profile_maidenname = '<tr><td> ....... What ever you want the Profile to view </td></tr>';
}
else
{
$profile_maidenname = '';
}
Then look for:
Code: Select all
'POSTS' => $profiledata['user_posts'],
and add something like this:
Code: Select all
'MAIDENNAME' => $profile_maidenname,
Then in the profile_view_body.tpl file, replace the lines that have the <td><tr> .... that is for your Maiden Names and replace it with something like this:
Note the Values might be differant for you, because I guessed on the Database Values because I do not have Maiden Names on my Forums...
I hope that helps