Remove users profile picture

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

Hi,

We have tested this PHP snippet and it works correctly. Please make sure you add it using the Code Snippets plugin. Also, please disable third-party plugins and customizations (if there are any) and check if this issue persists. If you use a caching plugin, make sure that caching is disabled for logged-in users.

I hope it helps