• Resolved Eugene

    (@euguk007)


    Hi.
    Please advise whether it is possible to exclude an input field on the user registration form being entered into the database as a meta field.
    For instance, when user registered I want to know the reason for his/her registration, but only for the email message purpose and not for the database entry.
    Thanks in advance!
    Eugene

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @euguk007,

    This may be possible with a custom code.

    add_action( ‘wppb_register_success’, ‘wppbc_custom_code’, 20, 3 );
    function wppbc_custom_code( $http_request, $form_name, $user_id ){
    update_user_meta( $user_id, ‘your_user_meta’, ” );
    }

    You’ll just have to modify ‘your_user_meta’

    Best regards,

    Thread Starter Eugene

    (@euguk007)

    Thank you very much for your help @dariusraia ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Registration – Exclude field from DB entry’ is closed to new replies.