Add buttons to order confirmation in payment

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 7 años
Hello! I want to add 2 buttons - view invoice and print invoice in order confirmation on payment.
Could u please tell me how to do it on the best way?

And one more question for asap - how to overwrite CheckoutCompleted - I also want to add 2 more buttons there.
Hace 7 años
art_MOO wrote:
Hello! I want to add 2 buttons - view invoice and print invoice in order confirmation on payment.
Could u please tell me how to do it on the best way?

And one more question for asap - how to overwrite CheckoutCompleted - I also want to add 2 more buttons there.


You can implement a plugin for override the following route ==>


   routes.MapLocalizedRoute("CheckoutCompleted",
                           "checkout/completed/{orderId}",
                            new { controller = "Checkout", action = "Completed", orderId = UrlParameter.Optional },
                            new { orderId = @"\d+" },
                            new[] { "Nop.Web.Controllers" });
  

Plugin code will be like bellow ==>


routes.MapLocalizedRoute("yourPluginCheckoutCompleted",
                           "checkout/completed/{orderId}",
                            new { controller = "yourCheckout", action = "Completed", orderId = UrlParameter.Optional },
                            new { orderId = @"\d+" },
                            new[] { "Nop.YourPlugin.Controllers" });


Note: url will same.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.