Enable booking requests by default

Hi,
1- is it possible to enable by default the option “Manually accept reservations” in the listing addition page,
2- is it possible to center the text in the “location” field of the search bar ?
thank you

  1. Please try this PHP snippet
add_action('hivepress/v1/models/listing/create', function($listing_id) {
	if(hivepress()->get_version( 'bookings' )){
		update_post_meta($listing_id, 'hp_booking_moderated', true);	
	}
});
  1. It is possible, but it requires advanced CSS customization. If you are not familiar with the code customization then please consider hiring someone for custom work https://fvrr.co/32e7LvY
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.