Disable optional form in booking


Hi
I bought booking extension

Please can disable or delete this
optional ? in the booking extension as in the attached photo
its important to me

thanks in advance

Hi,

To hide the booking offset and window fields in the listing form, please use this PHP snippet (How to add custom code snippets - HivePress Help Center):

Also, to hide the booking slot interval, please use this PHP snippet:

add_filter(
	'hivepress/v1/models/listing/attributes',
	function( $attributes ) {
		
		if ( isset($attributes['booking_slot_interval']) ) {
			$attributes['booking_slot_interval']['editable'] = false;
		}

		return $attributes;
	},
	1000
);

​I hope this is helpful to you.

P.S. If you purchased a theme or extension, please enter the license key in the forum profile settings, this will enable the Premium Support badge and ensure a 24-hour turnaround time.

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