Hi, I can add more category so vendor can choose more category when they try to register using your snippet
add_filter(
'hivepress/v1/forms/listing_submit',
function( $form ) {
if(isset($form['fields']['categories'])){
$form['fields']['categories']['multiple'] = true;
}
return $form;
},
1000
);
The problems is appear when they want to edit the profile and remove or add some or more category they can not do that, is that other snippet that can allow vendor/user to edit category?