Automatic booking confirmation

How can I make bookings get automatically accepted and confirmed so the vendor doesnt have to get an email…and the user is automatically directed to the payment option?.

Sorry i think io figured it out thanks

Please make sure that the Booking Requests option is not checked for this listing, then there should be a redirect to the Checkout page after the booking conformation form. If there are any issues with auto-completing payments please try this code snippet:

add_filter(
	'woocommerce_payment_complete_order_status',
	function( $status ) {
		return 'completed';
	},
	1000
);

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