Route to Plugin Configure 404 Page Not Found

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 years ago
Hi,

Building my first plugin so please excuse me ignorance.

I have used the VS2019 template creation addin to create the base of my plugin.

I then started to build my plugin "configuration" page.

The controller is in \Areas\Admin\Controllers and my view is in \Areas\Admin\Views.

I am struggling to get to the configure page  with the url this generates:

return $"{_webHelper.GetStoreLocation()}Admin/MyPlugin/Areas/Admin/Configure";

I get a 404. Can anyone help me get this path correct please?
3 years ago
Look at some other existing plugin - e.g.  

        public override string GetConfigurationPageUrl()
        {
            return $"{_webHelper.GetStoreLocation()}Admin/PickupInStore/Configure";
        }
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.