Make Check-in and Check-out time optional

Hi,

Please use these PHP snippets (How to add custom code snippets - HivePress Help Center):

add_filter(
	'hivepress/v1/models/listing/attributes',
	function( $attributes ) {
		if ( isset( $attributes['check_in'] ) ) {
			$attributes['check_in']['edit_field']['required'] = false;
		}
 
		return $attributes;
	},
	1000
);

add_filter(
	'hivepress/v1/models/listing/attributes',
	function( $attributes ) {
		if ( isset( $attributes['check_out'] ) ) {
			$attributes['check_out']['edit_field']['required'] = false;
		}
 
		return $attributes;
	},
	1000
);

I believe this will be useful to you.

1 Like