Adding check box to the new user registration
-
I am trying to add a a check box to the Add New User form in my MU
site.
I use the signup_extra_fields action hook to add the checkbox in the end of the user registration form:function japanese_toggle_callback($errors) { $html = '<label for="send_japanese" id="jap_label"><input type="checkbox" id="send_japanese" name="send_japanese" value="1" ' . checked(1, get_option('send_japanese'), false) . '/>'; $html .= ' Add Japanese user</label>'; echo $html; } add_action('signup_extra_fields', 'japanese_toggle_callback', 10, 1);
I put this code in to a plugin file but the checkbox do not appear unless I call the do_action on the signup_extra_fields hook.
I tried to play around with the priority of the hook with no luck.
please advise
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Adding check box to the new user registration’ is closed to new replies.