Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How do I remove the website field from Registration form?


Sam Bauers
Participant

@sambauers

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

?>

Skip to toolbar