Ok, thank you, are you able ot help me with some custom code with it, so I could add the code so it would only export reservations for (today) each time the export tool ran?
Ive tried to make my won code but currently getting an error,
thanks
// export only orders with total > 10
add_filter( ‘woe_order_export_started’, function ( $order_id ) {
$order = new WC_Order($order_id);
return ($order->get_booking_field_start_date() = str_replace( ‘{today}’, $today, $settings));
});