yes u can
1st you will need to create a
field in data base
tables
For example here ill use
ibf_members as the
table
I'll Call the data base
field "
tom_x"
Then u need to edit 2 files
Open skin_acp/IPB2_Standard/acp_skin_html/cp_skin_member.php
Find :
<tr>
<td width='40%' class='tablerow1'><strong>Post Count</strong></td>
<td width='60%' class='tablerow2'>{$form['posts']}</td>
</tr>
Add after:
<tr>
<td width='40%' class='tablerow1'><strong>BLAHHHHHHHHHHHHHHHH</strong></td>
<td width='60%' class='tablerow2'>{$form['tom_x']}</td>
</tr>
Open sources\action_admin\member.php
Find:
$form['member_title'] = $this->ipsclass->adskin->form_input( "title" , $mem['title']);
add after:
#-SRD23- Example
$form['tom_x'] = $this->ipsclass->adskin->form_input( "tom_x" , $mem['tom_x']);
note form_input = text input, u can change it to form_yes_no if u need a yes or no buttons
then find:
'mgroup_others' => $_POST['mgroup_others'] ? ','.implode( ",", $_POST['mgroup_others'] ).',' : '',
Add after:
#SRD Example
'tom_x' => $this->ipsclass->input['tom_x'],
Edited by sacRED, 07 October 2008 - 11:23 AM.