Please try this PHP snippet
add_filter(
'hivepress/v1/models/listing/attributes',
function( $attributes ) {
if ( isset( $attributes['booking_offset'], $attributes['booking_window'], $attributes['booking_slot_interval'], $attributes['booking_moderated']) ) {
// Hide Booking Offset.
$attributes['booking_offset']['editable'] = false;
// Hide Booking Window.
$attributes['booking_window']['editable'] = false;
// Hide Slot Interval.
$attributes['booking_slot_interval']['editable'] = false;
// Hide Booking Requests.
$attributes['booking_moderated']['editable'] = false;
}
return $attributes;
},
1000
);