Hi!
I have made custom registration form and I have created a custom field (using php) that I want to add to the registration form. It does appear in buddypress registration but not in the custom form I created.
What hook can I use to show it in the custom form of wplms?
Kind regards
echo your field on this hook : do_action('wplms_before_registration_form',$form_name);
handle your field saving on this hook :do_action('wplms_custom_registration_form_user_added',$user_id,$user_args,$form_settings);
but this hook wont work for validations . we need to add another hook in upcoming updates for validations.