Wednesday, August 15, 2012

A route named could not be found in the route collection. NopCommerce

Go to the Nop.Web.Infrastructure.RouteProvider.cs
Add  following Code 
routes.MapLocalizedRoute("YourLink",
                            "customer/YourLink",
                            new { controller = "Customer", action = "YourLink" },
                            new[] { "Nop.Web.Controllers" });


No comments:

Post a Comment

TinyMCE Insert/Edit link not editable

 To fix this add  e.stopImmediatePropagation()  as below. $(document).on('focusin', function (e) {             if ($(e.target).close...