Change the minutes it takes an In cart booking to expire in WooCommerce Bookings

Change the minutes it takes an In cart booking to expire in WooCommerce Bookings on child sites.

Snippet Type

Execute on Child Sites

Snippet

function change_incart_bookings_expiry_minutes_20170825( $minutes ) {
	return 30;
}
add_filter( 'woocommerce_bookings_remove_inactive_cart_time', 'change_incart_bookings_expiry_minutes_20170825' );

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