Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 26, 2022 15:52
Show Gist options
  • Save hivepress/3bc9f1b9a215f6de858b7799af9bc9b1 to your computer and use it in GitHub Desktop.
Save hivepress/3bc9f1b9a215f6de858b7799af9bc9b1 to your computer and use it in GitHub Desktop.
Make the purchase note or booking note required #hivepress #marketplace #bookings
<?php
add_filter(
'hivepress/v1/forms/listing_update',
function( $form ) {
if(isset($form['fields']['purchase_note'])){
$form['fields']['purchase_note']['required'] = true;
}
return $form;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment