1.8 to 1.9 - custom payment provider config no longer shows

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
OK, so I've just done a 1.8 to 1.9 upgrade.

All is well but my custom payment provider 'Configuration' panel won't show (i.e. ConfigurePaymentMethod.ascx)

Any ideas why this maybe ?

I've checked the location of the module in the 'ConfigurationTemplatePath' field and that is just fine.

Nothing showing in error log and the payment method itself works just fine.

Any ideas ? thx
13 years ago
I'm having the same problem. I've created my configuration page using the Manual Payment Module as template and triple checked everything and yet the custom config is not showing up.

Is there a need to register it somewhere else?


namespace NopSolutions.NopCommerce.Web.Administration.Payment.F2B
{
    public partial class ConfigurePaymentMethod : BaseNopAdministrationUserControl, IConfigurePaymentMethodModule
    {
        public TransactMode GetCurrentTransactionMode()
        {
            if (Settings.Url == null)
            {
                NopSolutions.NopCommerce.Payment.Methods.F2B.Setup.Install install =  new NopSolutions.NopCommerce.Payment.Methods.F2B.Setup.Install();
                Response.Write(install.Results);
            }
...
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.