• Resolved sandilyan515

    (@sandilyan515)


    Admin want to get user mobile number when register in wordpress site. In admin notification section i will get only %user_login%, User email: %user_email%, Register date: %date_register%. Please tell me how to get meta value like first_name or mobile number etc…. through the sms.

Viewing 1 replies (of 1 total)
  • Plugin Author Mostafa Soufi

    (@mostafas1990)

    The fields of registration forms are username and password and mobile number (if enabled) and you can’t get another field like the first name or last name, However, there is an example if you want to add the new variables for this notification:

    $template_vars = array(
    	'%user_login%'    => $user->user_login,
    	'%user_email%'    => $user->user_email,
    	'%date_register%' => $this->date,
    	'%first_name%' => $user->first_name,
    	'%last_name%' => $user->last_name,
    );
Viewing 1 replies (of 1 total)
  • The topic ‘How to get user mobile number while registering’ is closed to new replies.