I used this code to add additional contact methods in the user profile:
function add_remove_contactmethods( $contactmethods ) {
// Add Contact Methods
$contactmethods['twitter'] = 'Twitter';
$contactmethods['facebook'] = 'Facebook';
$contactmethods['googlebuzz'] = 'Google Buzz';
$contactmethods['friendfeed'] = 'Friend Feed';
$contactmethods['linkedin'] = 'Linked In';
$contactmethods['flickr'] = 'Flickr';
// Remove Contact Methods
unset($contactmethods['aim']);
unset($contactmethods['yim']);
return $contactmethods;
}
add_filter('user_contactmethods','add_remove_contactmethods',10,1);
I also have these fields set up as Website fields on my form.
When trying to map these fields in User Registration, the last 4 do not appear in the drop down. They are on the form however.
Using 1.6 b2 of the plugin. WP 3.2.1
Thanks