Author Topic: ACP edit user versus member_editprofile.html -- mystery?  (Read 3794 times)

0 Members and 1 Guest are viewing this topic.

Offline steveeyes

  • Full Member
  • ***
  • Posts: 177
    • View Profile
ACP edit user versus member_editprofile.html -- mystery?
« on: March 05, 2007, 05:44:00 PM »
Hi

I have customized memberedit_profile.html. What puzzles me is when I edit a users profile from the ACP, the fields are not the same as the fields in memberedit_profile.html. Specifically, at the bottom of the form in the ACP are two radio buttons with yes no values. The no value is pre-checked. The problem is, I have no idea what these radio buttons represent since there is no title/label for these radio buttons. It simply shows two radio buttons with yes no value.

I do not have any fields like this in my memberedit_profile.html. How do I find out what these two fields are in the edit users in the ACP? How do I edit the fields in the ACP for users?

 Any thoughts or suggestions would be appreciated.

Thanks
Steve

Offline mawenzi

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: ACP edit user versus member_editprofile.html -- mystery?
« Reply #1 on: March 05, 2007, 07:26:26 PM »
... search in your db_field_definitions.php for "additional_user_fields" ...
... like this ...
Code: [Select]
$additional_user_fields['user_XXX'] = array($lang['YYY'], "radio", 0);
... where 'user_XXX' is your additional user field ...
... and 'YYY' is the description for this field ...
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline steveeyes

  • Full Member
  • ***
  • Posts: 177
    • View Profile
Re: ACP edit user versus member_editprofile.html -- mystery?
« Reply #2 on: March 06, 2007, 03:23:31 AM »
thanks