Forums
-
- Forum
- Posts
-
- Installation
- 28,091
- Troubleshooting
- 61,371
- Themes
- 10,273
- Plugins
- 15,121
- Requests & Feedback
- 14,747
- Showcase
- 3,251
-
This code used as a plugin should do it.
<?php
/*
Plugin Name: Kill URL
Description: Kills URL field in profile
*/
function kill_url_in_profile_keys( $keys )
{
unset( $keys['user_url'] );
return $keys;
}
add_filter( 'get_profile_info_keys', 'kill_url_in_profile_keys' );
?>
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS