Error for deleted order
-
if an order is deleted it will show an error for the line 690 because it will return false
my fix is the following but should be handled
if ($order === false)
{
$item['order_status'] = 'waiting';
}
else
{
$order_data = $order->get_data();
$item['order_status'] = $order_data['status'];
}The page I need help with: [log in to see the link]
- You must be logged in to reply to this topic.