badyl Posted October 7, 2010 Share Posted October 7, 2010 Hi, I'm trying to pass order number to last step of COD - to confirmation.tplI've added line below to cashondelivery.php to hookPaymentReturn function (line before return;) $order = new Order($params[0]); In confirmation.tpl I have something like this: Your order number: {$order} but it doesn't work (displays only text, no number). Can You help? Link to comment Share on other sites More sharing options...
rocky Posted October 7, 2010 Share Posted October 7, 2010 Try the following instead: $smarty->assign('order', $params[0]); Link to comment Share on other sites More sharing options...
badyl Posted October 11, 2010 Author Share Posted October 11, 2010 Unfortunately that doesn't work. I've added line like above and have blank screen on last confirmation after placing an order. I've got Prestashop 1.3.1, my files looks like this:cashondelivery.php: ... public function hookPaymentReturn($params) { if (!$this->active) return ; $smarty->assign('order', $params[0]); return $this->display(__FILE__, 'confirmation.tpl'); } and confirmation.tpl: {l s='Your order on' mod='cashondelivery'} {$shop_name}{l s='is complete.' mod='cashondelivery'} {l s='You have chosen the cash on delivery method.' mod='cashondelivery'} {l s='Your order will be sent very soon.' mod='cashondelivery'} Number of Your order: {$order} {l s='For any questions or for further information, please contact our' mod='cashondelivery'} {l s='customer support' mod='cashondelivery'}. Any ideas? Link to comment Share on other sites More sharing options...
badyl Posted October 14, 2010 Author Share Posted October 14, 2010 I've tried some more modifications and have no clue what's wrong Please help Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now