problem when using plugin with user_register and first_name field
-
I have a problem after enabling the plugin – by default, I use function in my theme
add_action('user_register','my_function'); function my_function($user_id){ $userinfo = get_userdata($user_id); if ( isset( $_POST['first_name'] ) ) { $first_name = $_POST['first_name']; } //and other stuffbut after enabling plugin – i get empty $first_name
How to solve the problem?
Please help
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘problem when using plugin with user_register and first_name field’ is closed to new replies.