I am having some issues with this code. I just want to display an Order Date + 5 Days on my thank you page for the estimated delivery time.
// The orders date
$order_date = $order->get_date_created();
$order_date = $order_date->date('Y-m-d H:i:s');
// The order date + 5 days
$order_date_5d = date( 'Y-m-d H:i:s', strtotime( $order_date . ' +5 days' );
// TESTING OUTPUT
echo 'ORDER DATE: ' . $order_date . '<br>';
echo 'ORDER DATE + 5 days: '.$order_date_5d . '<br>';
For some reason I am not being able to make this a simple shortcode. Any ideas or suggestions to make this work?
Thank you! Jessica <3
)to heredate( 'Y-m-d H:i:s', strtotime( $order_date . ' +5 days' );- Bhautik