I am currently developing my first OC4 extension and a questions have arisen that I am hoping you can help me with.
On the thank you page (success.twig) I need the "order_id" after purchase, because I need some order data there. My idea was the following:
Code: Select all
if (isset($this->session->data['order_id'])) {
$this->load->model('checkout/order');
$data['orderDetails'] = $this->model_checkout_order->getOrder($this->session->data['order_id']);
}
Do you have a idea for me on how to get this data on the success page?
Best
Jack