Hide tags field only in front end submission

Hi,
I would like to hide the tags field in the front-end submission form, but leave it in the back-end. How can I do this?
.

Please try this PHP snippet

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

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