Manualy accept new bookings

Please try this PHP snippet. This option will be checked by default for new listings

add_action('hivepress/v1/models/listing/create', function($listing_id) {
	update_post_meta($listing_id, 'hp_booking_moderated', '1');
});