[Developing plugins] Configure page doesn't work

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 years ago
Hello everyone, during the development of my first plugin, I encountered a problem that the plugin configuration page does not work for me. Writes that such a page does not exist
[img]https://prnt.sc/wkb24j[img]
I do not know why this happens, write what data you need, in order to help me, I will throw everything that is needed.Thank you in advance.
3 years ago
What version of nopCommerce?
Have you read the plugin dev docs?
Did you Install the plugin?
Do you have a Configure.cshtml file in your Views folder?
Does your Configure() method look something like this?

        [AuthorizeAdmin]
        [Area(AreaNames.Admin)]
        public IActionResult Configure()
        {
            var model = new ConfigurationModel();
            PrepareModel(model);

            return View("~/Plugins/Misc.YourPlugin/Views/Configure.cshtml", model);
        }
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.