Get The Delivery Date And Time For An Order

The delivery date and time slot are saved to an order as post meta. This means it’s possible to fetch using PHP. You can get three different bits of data: the delivery date, the time slot, and the timestamp.

$date = $order->get_meta( '_jckwds_date' );
$time_slot = $order->get_meta( '_jckwds_timeslot' );
$timestamp = $order->get_meta( '_jckwds_timestamp' );

WooCommerce Delivery Slots

Choose a delivery date and time for each order. Add a limit to the number of allowed reservations, restrict time slots to specific delivery methods, and so much more.

Was this helpful?

Please let us know if this article was useful. It is the best way to ensure our documentation is as helpful as possible.