Re: How to Remove Avatar Upload at Registration Screen
To do this you’ll have to replace the current bp function xprofile_add_signup_fields() with your own. In bp-custom.php create a new function that renames the current function like so. Just copy the whole thing over and rename it.
function my_xprofile_add_signup_fields(){
<body of existing bp function>
<your mods to the avatar area>
}
remove_action( ‘signup_extra_fields’, ‘xprofile_add_signup_fields’ );
add_action( ‘signup_extra_fields’, ‘my_xprofile_add_signup_fields’ );