Hello,
For my site, I don’t need categories, and I’d just like to remove the requirement to put a category in the listings.
I already tried this code but it doesn’t work.
// Remove Category field from listing submit form
add_filter(
'hivepress/v1/forms/listing_submit',
function( $form ) {
unset($form['fields']['categories']);
return $form;
},
1000
);
Can you help me? I can’t find the php code for this. Thank you very much.