Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 26, 2022 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/a34336e834782af98f9135c546ae6175 to your computer and use it in GitHub Desktop.
Save hivepress/a34336e834782af98f9135c546ae6175 to your computer and use it in GitHub Desktop.
Set the default time slot duration #hivepress #bookings
<?php
add_filter(
'hivepress/v1/forms/listing_update',
function( $form ) {
if ( isset( $form['fields']['booking_slot_duration'] ) ) {
$form['fields']['booking_slot_duration']['default'] = 123;
}
return $form;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment