Umbraco Commerce Checkout Custom Routing
# help-with-umbraco
m
Hey everyone, I've got a site where i'm currently using the Umbraco Commerce Checkout package, but I need to do some custom stuff during the routing for the Checkout pages. I've done this in the past with Vendr when it was one .NET Framework as it works fine, but for .NET Core it throws an
AmbiguousMatchException
due to how the routing works with the RenderController. When creating my own custom render controller I still want to inherit the base controller used by the Checkout plugin to make sure I don't break any functionality, but because they both include an Index method due to the underlying
RenderController
it just errors out. Does anyone know of a way around this? I've considered maybe just taking the source code from the package instead seeing as it's open source so I have full control, but If is is possible to do it without, I've prefer that so I can still get the occasional update.
At the moment i'm leaning on just taking the source code from the Checkout package