OpcPaymentMethods view was not found

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
I use nopCommerce 4.1
I make new controller derived from CheckoutController in my plugin. But in action I need return result of parent controller.
public IActionResult OpcSaveShippingDeliveryCdekMethod(string shippingoption)
        {
            //some code

            return base.OpcSaveShippingMethod(shippingoption);//form["shippingoption"]);
        }

After runing this I have exception "OpcPaymentMethods view was not found"

I understood that OpcPaymentMethods view are searched in my plugin directory. But this view is located in Nop.Web project.
How to make nopCommerce found this view?
4 years ago
I make mistake. Question closed
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.