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
);