There are hooks in register
do_action(‘userpro_before_fields’, $hook_args);
You can use that hook to add a hidden input or any kind of inputs before fields.
These fields can later be processed after new registration – there’s another hook that runs when profile is updated (e.g. when someone register, edit profile, etc)
do_action(‘userpro_profile_update’, $form, $user_id);
These 2 hooks allow you to connect any custom fields.
Leave A Comment?