Delete category

Hi @mheefu,

You can try the following snippet to remove categories:

// Remove Category field from listing submit form
add_filter(
	'hivepress/v1/forms/listing_submit',
	function( $form ) {
		unset($form['fields']['categories']);	

		return $form;
	},
	1000
);

// Remove Category field from listing filter form
add_filter(
	'hivepress/v1/forms/listing_filter',
	function( $form ) {
		unset($form['fields']['_category']);	

		return $form;
	},
	1000
);

Or, to allow users to select multiple categories, see the solutions in this topic:

I hope this helps!

Cheers,
Chris :victory_hand: