Hide description in profile settings

Hello,
I have a big problem regarding the UX or possibilities. When people sign up with us, they are redirected to their account in “Setting”. There, among other things, you have the option to fill in the “Description” field.
What the users don’t realize is that this description is not an ad, but is only displayed in the public profile when they offer something.
We now have many users who have written their description of a job/service right there.
Is there any way to remove this field?
Thanks in advance!

Please try this PHP snippet

add_filter(
	'hivepress/v1/forms/user_update',
	function( $form ) {
		unset( $form['fields']['description'] );
		
		return $form;
	},
	1000
);

thank you! :slight_smile:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.