Make opening hours required

Hi,

Please use this PHP snippet (How to add custom code snippets - HivePress Help Center):

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		$form['fields']['opening_hours']['required'] = true;

		return $form;
	},
	1000
);

​I hope this is helpful to you.