• Resolved luxord

    (@luxord)


    Hi,

    i need some help, how can i get the date time of each order in the database? In which table, I can’t find them

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author rajeshsingh520

    (@rajeshsingh520)

    Hi,
    if you want the pickup or delivery date

    then it is stored in the order post meta as “pi_delivery_date” and you can get that for specific order like this

    
    $delivery_pickup_date = get_post_meta($order_id, 'pi_delivery_date', true);
    
    $delvery_type = get_post_meta($order_id, 'pi_delivery_type', true);
    
    Thread Starter luxord

    (@luxord)

    resolved,
    thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Date Time in database’ is closed to new replies.