Birthday and Mobile Phone Facebook
-
Great Plugin, been looking for something like this..
Can you tell me how to pre fill the birthday and mobile phone fields from facebook?
i have added this to the functions.php file but it doesnt seem to be pulling it in
add_filter( ‘janrain_gforms_profile_data’, ‘add_birthday_field’ );function add_birthday_field( $fields ) {
$fields[‘birthday’] = array(
‘name’ => ‘Birthday’,
‘function’ => ‘birthday_field’
);
return $fields;
}function birthday_field( $profile ) {
return $profile->merged_poco->birthday;
}Also this doesn’t seem to be pulling my mobile phone number from my profile
https://screencast.com/t/Nntf41VCSVl5
And some of the fields dont get this like the email but the email still works?
https://screencast.com/t/fw9wGfmW
Thanks Scott
- The topic ‘Birthday and Mobile Phone Facebook’ is closed to new replies.