Complete onboarding to configure the plugin automatically and start accepting PayPal payments in your store.
This only works in production, if you want to test the functionality first, use the sandbox mode, you need to manually create REST API app and get its credentials. If you choose the sandbox mode, then PayPal Commerce integration will be used for testing purposes.
Read more about Seller Protection Policy.
@if (Model.OnboardingModel.DisplayStatus)
{
@if (Model.OnboardingModel.AccountCreated)
{
}
else
{
}
@T("Plugins.Payments.PayPalCommerce.Onboarding.Process.Account")
@if (Model.OnboardingModel.EmailConfirmed)
{
}
else
{
}
@T("Plugins.Payments.PayPalCommerce.Onboarding.Process.Email")
@if (Model.OnboardingModel.PaymentsReceivable)
{
}
else
{
}
@T("Plugins.Payments.PayPalCommerce.Onboarding.Process.Payments")
@if (Model.OnboardingModel.PermissionGranted)
{
}
else
{
}
@T("Plugins.Payments.PayPalCommerce.Onboarding.Process.Permission")
}