Booking slot duration

How do I get rid of booking slot duration

1 Like

Hi,

If you don’t need the slot duration, you can disable time-based bookings. If you need to use time-based bookings, but don’t need the slot duration option, you can use a code snippet for that, but please note that further customization may be required:

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		if ( isset( $form['fields']['booking_slot_duration'] ) ) {
			$form['fields']['booking_slot_duration']['required'] = false;
		}

		return $form;
	},
	1000
);

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		unset( $form['fields']['booking_slot_duration'] );

		return $form;
	},
	1000
);

Hope this helps.

P.S. Please note that we have to move this topic to the Bookings forum category. Since it’s related to a premium extension, the forum category is restricted — please add the license key to the account settings or consider renewing support if you still need assistance related to the premium themes or extensions Renew Support | HivePress

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