Hello,
I have looked into this and added the code
// Change user contact fields profile
function change_user_profile( $contactmethods ) {
// Add Twitter field
$contactmethods['twitter'] = 'Twitter Name (no @)';
// Remove AIM, Yahoo IM, Google Talk/Jabber
unset($contactmethods['aim']);
unset($contactmethods['yim']);
unset($contactmethods['jabber']);
return $contactmethods;
}
add filter('user_contactmethods','change_user_profile',10,1);
However whenever I do it throws up a nasty 500 server error. I had a thought that it might not be compatible with wordpress 3.3.1
Any ideas? Thank you!
Max