Remove profile description from users but not for vendors registration

Hello, i was wondering if its possible to remove the profile description from the regular users but still have it on the become a member registration form?

I am using this, but now the profile description does not appear if I want to register as a vendor

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

Hi,

Sorry, there’s no simple code snippet for this, it would require a custom implementation. If customizations beyond the available features are required for your site, please consider hiring someone for custom work https://fvrr.co/32e7LvY

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