How to get cart orders total in prestashop ?

$total = Context::getContext()->cart->getOrderTotal(true);

The code above will display total cart order price with tax.
If you don't want tax to be included in your total, change the parameter from true to false.

Post a Comment

0 Comments