Hi there. How do I disable “Manually accept new bookings” for Vendors as I’d like all booking to be completed at Booking payment. IE. Vendors don’t have the option to accept or decline.
Hi,
Please try this PHP snippet (How to add custom code snippets - HivePress Help Center):
add_filter(
'hivepress/v1/forms/listing_update',
function( $form ) {
unset($form['fields']['booking_moderated']);
return $form;
},
1000
);
The snippet worked, THANKS!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.