Spaceray Posted February 8, 2012 Share Posted February 8, 2012 Hello, I have already configured all the shop and all goes right, and now for finishing the only thing left is that when I go to checkout, and enter my own data with name and adress, the choose the shipping and then choose the payment, I go to the final page where I have to confirm my order and so this is the final step. BUT THERE IS A VERY BIG PROBLEM (at least for me) in that final confirmation page, the only thing that appears before hitting the "confirm order" is ONLY the payment method and the total price to pay, that is all, nothing more. Please I would like that at this final page would ALSO be included the following: So I would like to include in the final page before confirm the order the following data 1 - Show the customer data entered and given in the one page checkout with name and adress so the client can be sure, safe and feel that all is right about the data given for his order to arrive right to where he wants it to arrive. 2 - Show the full cart summary with all the products that are included in the order with the total order and showing the shipping price. 3 - Show the Carrier selected 4 - Show the payment method selected So having this 4 data gives confidence in the end page, ensures and convinces the customer that everything is right and can without any problem click on the "confirm" button to make the order How can a customer be confident and be sure that his order is absolutely correct and that all his data has been collected and recorder right and he has choosen the right carrier ? I have seen that this also happen on many other already live shops THE DATA SHOWN IN THE FINAL PAGE DEPENDS ON THE PAYMENT MODULE CHOOSEN I have found that the final page does not depend on the checkout of prestashop, it depends totally on the Payment module choosen (please tell me if I am wrong) I have found now this very interesting thread in the Prestashop forums that explains this very well and you have to add the summary cart and other data YOURSELF modifying the TPL files http://www.prestasho...your-order-not/ Well I have tried it myself, and it worked in some way, BUT the summary cart was not shown right and could not show the customer data and carrier. Please could anyone be so kind to help me with this and be able to modify the payments modules to be able to include the customer data, cart summary, carrier choosen, payment choosen and the total amount to be paid ? This happens the same on all the payment modules I have tried Thanks very much for your help Kindest regards 1 Link to comment Share on other sites More sharing options...
Spaceray Posted February 9, 2012 Author Share Posted February 9, 2012 Please, I have been looking for examples of what I mean and I will be updating this post soon with some screenshots for you see to see what I mean. Link to comment Share on other sites More sharing options...
Spaceray Posted February 9, 2012 Author Share Posted February 9, 2012 I have found and example where in this prestashop they have configured in the final page before confirm and page, they put exactly what I am looking for The shop that have it right is http://www.timefy.com/en And here I include a screenshot of what I want to have in my own shop Link to comment Share on other sites More sharing options...
Spaceray Posted February 9, 2012 Author Share Posted February 9, 2012 Please, look at the post below as I have had an error from the forum, sorry Link to comment Share on other sites More sharing options...
Spaceray Posted February 9, 2012 Author Share Posted February 9, 2012 I had a problem with the browser and it had made double post, sorry Link to comment Share on other sites More sharing options...
Franky4 Posted February 9, 2012 Share Posted February 9, 2012 i think you should edit your tpl theme file Link to comment Share on other sites More sharing options...
Spaceray Posted February 10, 2012 Author Share Posted February 10, 2012 i think you should edit your tpl theme file Thanks, but I already know that as I have already done it as I told above from this other thread in this forum http://www.prestasho...your-order-not/ The problem is HOW to do it right, and what are the steps to get it working as shown on the example web above. Link to comment Share on other sites More sharing options...
Spaceray Posted February 16, 2012 Author Share Posted February 16, 2012 Please, nobody knows how to configurate the end page as shown in the attached thubnails above ? Thanks very much for any help that you could bring. Link to comment Share on other sites More sharing options...
tripailao Posted June 28, 2012 Share Posted June 28, 2012 nobody?? Link to comment Share on other sites More sharing options...
praneth Posted March 15, 2013 Share Posted March 15, 2013 (edited) This thread is more that a year old, but I can partially help for people using v.1.5: To display the cart on the bank wire summary page, I inserted a new hook following this method: http://www.prestashop.com/forums/topic/173027-solved-how-to-create-a-new-hook-in-15-am-i-doing-it-wrong/page__st__20 (The tutorial says that you don't have to, but I had to manually add the hook to the database). I then made a copy of blockcart.tpl (named it blockcart2.tpl). Following this, I inserted the code below before the last } of blockcart.php public function hookDisplayMyNewHook($params) { if (Configuration::get('PS_CATALOG_MODE')) return; // @todo this variable seems not used $this->smarty->assign('order_page', strpos($_SERVER['PHP_SELF'], 'order') !== false); $this->assignContentVars($params); return $this->display(__FILE__, 'blockcart2.tpl'); } You can then modify blockcart2.tpl to suit your needs. I haven't tried to display the other information (carrier, address, etc), but I don't see any reason why it wouldn't work using the same method. Good luck!! Edited March 15, 2013 by praneth (see edit history) 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