Hide profile image in vendor register form

How can i hide the profil image in the Vendor Register Form.

.button.hp-field.hp-field–button {display: none;}

But in such a way that further upload buttons are not hide.

Thank you

Hi,
Please try this PHP snippet (How to add custom code snippets - HivePress Help Center):

add_filter(
	'hivepress/v1/forms/user_update',
	function( $form ) {
		unset( $form['fields']['image'] );

		return $form;
	},
  1000
);
1 Like

It work´s! Thank you very much!

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