Hi @junior_l3oss,
We do not have shortcodes available in that plugin, but you can use the meta keys which have been used for storing delivery date and time into the “wp_postmeta” table.
- You can use ” _orddd_lite_timestamp ” meta key which stores the delivery date in timestamp format. Or, you should be able to fetch the delivery date using the ‘Delivery Date’ field label. It is the meta key.
- You can use “Time slot” field label set in the plugin’s settings as an meta key.
For eg,
$delivery_date = get_post_meta( $order_id. ‘Delivery Date’, true); or
$delivery_date = get_post_meta( $order_id, ‘_orddd_lite_timestamp’, true);
$delivery_date = get_post_meta( $order_id. ‘Time Slots’, true);
Do let me know if you have any further questions.