• I have created some custom fields to be collected when registering. They appear properly when I have registered as a user.

    I want to be able to see this data from the admin end though. Should it be displaying in user-edit?

    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)
  • i face the same issue on wp2.6

    i created custom field as birthday; it appears ok on registration; also appears in the profile section with empty value.

    any idea how to fix this? thanks

    Same problem with me.

    in addition to empty custom field data shown in user profile in admin section, i’ve also found out that the register plus is somehow having conflict with user-photos plugin too (or vice versa)

    when a user upload a photo in the admin section, the custom entry (in my case, bithdate) in the usermeta in the mysql is wiped out and become NULL ..

    can someone pls help.

    i looked at the register-plus php; and found that fieldtype “date” is not shown somewhere in line 1574, so added this as a temp measure (treating it like a text input):

    switch( $v['fieldtype'] ){
    case "date" :
    $outfield = '<input type="text" name="' . $id . '" id="' . $id . '" value="' . $value . '"  />';
    break;

    thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Register Plus Custom Fields in Admin?’ is closed to new replies.