I have searched but only found details for opencart 1.5. I tried using
$this->load->model('account/order');
but throws an error because it only works for earlier versions of opencart. Any help appreciated.
I have searched but only found details for opencart 1.5. I tried using
$this->load->model('account/order');
but throws an error because it only works for earlier versions of opencart. Any help appreciated.
Try this
$this->load->model('checkout/order');
$order_info=$this->model_checkout_order->getOrder($this->session->data['order_id']);