Hi, I would like to ask if there is any way to completely remove or hide the ability for users to add a profile picture. I try this
add_filter(
'hivepress/v1/forms/user_update',
function( $form ) {
unset( $form['fields']['image'] );
return $form;
},
1000
);
but not working. Maybe someone knows the css code that can do this.
Best regards