How to remove Booking Available From and to

So I am adding listings to my site that the organisations can claim as their own to be able to respond to those that may directly reply to the listing.

What I am noticing is, if I do not put a category to the listing, they will simply have the reply to listing yellow button with some basics:

Name/Title
Description
Image
Price
Location
Discount

When I put a Category I get:

Amongst other attributes I added of phone, website, ages, days etc

The booking section opens up and it will not allow me to update/publish the listing without putting in a Booking Available From and To?

It may just be how I have it set up, or is it standard as soon as you choose category the booking features appear?

Is there a way of adding category and my attributes without the booking functionality being mandatory to complete?

Also, when I have chosen a category, it seems impossible to undo that action to go back to the original basic listing and it keeps asking me to complete the category attributes and booking from and to windows.

What do I need to look at/change please?

Hi,

Please use this PHP snippet:

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

​I hope this is helpful to you.