How to remove user’s contact info profile fields
Description:
Applying this short hack in yoyur function.php theme file you will be able to remove un-used profile fields from user’s contact method.
To replace that contact method you just need to remove the function from the dile of your theme.
The Code:
function wpc_remove_fields( $contactmethods ) {
unset($contactmethods['aim']);
unset($contactmethods['yim']);
return $contactmethods;
}
add_filter('user_contactmethods','wpc_remove_fields',10,1);



Really useful post. By the way you have two typos i.e; yoyur in first line and dile in third line. Thanks Pigi