hi
I have sent the source code.
You can add your custom field in the StripePaymentGateway service.
Thanks.
hi
Can you share your contributor and microservice tempate service DataSeeder class code?
Thanks.
hi
We will improve it in the next 9.3.x patch version.
Thanks.
hi
You can override the StripePaymentGateway service.
Please send an email to liming.ma@volosoft.com
I will share the source code of StripePaymentGateway
Thanks.
Configure<PaymentOptions>(options =>
{
options.Gateways.RemoveAll(x => x.Key == StripeConsts.GatewayName)
options.Gateways.Add(
new PaymentGatewayConfiguration(
StripeConsts.GatewayName,
new FixedLocalizableString("Stripe"),
isSubscriptionSupported: true,
typeof(StripePaymentGateway)
)
);
});
hi
You can disable the self-registration on the Host side.
Thanks.
hi
Can you share the RegisterAndSubscribeAsync method code?
hi
You can add OpenIddictToken to IgnoredNavigationEntitySelectors instead of overriding AbpEfCoreNavigationHelper.
Configure<AbpEntityChangeOptions>(options =>
{
options.IgnoredNavigationEntitySelectors.Add("DisableOpenIddictToken", type => type == typeof(OpenIddictToken));
});
hi
You can reconsider requiring authentication for all pages.
options.Conventions.AuthorizeFolder("/");
Perhaps you can find an alternative solution.
What is your real use case?
Thanks.
hi
I will confirm this with the Theme team.
Thanks.