Make user profile field required
What I did create form with fields and validate them: added this line of code to add the user knowledge that it is required fields <span class=”description”><?php _e(‘(required)’); ?></span> added this to form like this: add_action( ‘show_user_profile’, ‘extra_user_profile_fields’ ); add_action( ‘edit_user_profile’, ‘extra_user_profile_fields’ ); function extra_user_profile_fields( $user ) { ?> <table class=”form-table”> <tr> <th><label for=”address”><?php _e(“address”,’shabatkeeper’); … Read more