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);