maria_skyyield Posted April 28, 2015 Share Posted April 28, 2015 Hello, I'm new with Prestashop, and I need to get the total_discount applied in the cart but in the order-confirmation.tpl Is it possbile? Could you help me, please? Thanks Maria Link to comment Share on other sites More sharing options...
erouvier29 Posted April 29, 2015 Share Posted April 29, 2015 Hi Maria, You can add the following line somewhere in OrderConfirmationController::initContent(): $this->context->smarty->assign(array('order' => (array)new Order($this->id_order))); Then you can use any data from order in order-confirmation.tpl, e.g.: <p>Total discount is {convertPrice price=$order.total_discounts_tax_incl}</p> Regards -- Eric Link to comment Share on other sites More sharing options...
maria_skyyield Posted April 29, 2015 Author Share Posted April 29, 2015 It works. Thanks!!! Link to comment Share on other sites More sharing options...
Recommended Posts