Booking Extension, How to Remove Attributes Not used?

I would like to remove the Pre-Install Attributes in the Booking Extension. I do not need those and would like to create my own? Thanks

Please try to disable Allow syncing with external calendars setting in HivePress/Settings/Bookings to remove Export/Import fields

Also, please try this PHP snippet to hide other fields which are on your screenshot

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

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