Try your search with a different keyword or use * as a wildcard.
@model ConfigurationModel
@{
Layout = "_ConfigurePlugin";
NopHtml.SetActiveMenuItemSystemName($"{PayPalCommerceDefaults.SystemName} Configuration");
var learnMore = "Learn more about the PayPal Commerce plugin configuration here.
";
}
@await Component.InvokeAsync(typeof(StoreScopeConfigurationViewComponent))
@if (Model.IsConfigured)
{
@await Component.InvokeAsync(typeof(SettingModeViewComponent))
}
@if (await Html.IsTourActiveAsync())
{
@await Html.PartialAsync("~/Plugins/Payments.PayPalCommerce/Views/Admin/_Configure.Tour.cshtml")
}