• Resolved raquelfernandes

    (@raquelfernandes)


    In what table of the wordpress database are stored the additional information we created with “User Registration”?
    I need to capture an information in the additional field that I created

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The additional information are stored on usermeta table in the database. The meta key is prefixed with user_registration_{meta_key}, where {meta_key} is the field name from the field’s settings.

    For example to get the value of the field in this screenshot: https://ibb.co/HPLs0Q2,

    get_user_meta( $user_id, 'user_registration_radio_1549011371', true );

    Let me know if you have any confusion and I’ll get back to you soon.

    Thank You!

    • This reply was modified 7 years, 3 months ago by Sanjeev Aryal.
    Thread Starter raquelfernandes

    (@raquelfernandes)

    That’s work.
    Thank You!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Capture additional information’ is closed to new replies.