How Can I Get Total Price – OpenCart

My site is based on OpenCart, How can I get current TOTAL price in PHP

You can get the order info by using getOrder with the order_id stored in the session:


$order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']);
$total = $order_info['total'];

0 0 votes
Article Rating
Subscribe
Notify of
guest
2 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
hghost
hghost
8 years ago

where to paste this code? and how?