Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docu] TypoScript for payments incorrect? #22

Open
medarob opened this issue Oct 20, 2021 · 0 comments
Open

[Docu] TypoScript for payments incorrect? #22

medarob opened this issue Oct 20, 2021 · 0 comments

Comments

@medarob
Copy link

medarob commented Oct 20, 2021

I used this TypoScript

plugin.tx_cart {
    payments {
        options {
            2 {
                provider = PAYPAL
                title = Paypal
                extra = 0.00
                taxClassId = 1
                status = open
            }
        }
    }
}

as described in the documentation
https://docs.typo3.org/p/extcode/cart-paypal/5.0/en-us/AdministratorManual/Configuration/PaymentMethod/Index.html
but the Paypal option wasn't available during checkout.

When I change it to

plugin.tx_cart {
  payments {
      de {
        options {
          2 {
            provider = PAYPAL
            title = Paypal
            extra = 0.00
            taxClassId = 1
            status = open
          }
        }
      }
  }
}

it works and then I have two options in the checkout form.

Maybe the TypoScript example in the cart_paypal documentation needs to be updated (including de) or did I do something wrong?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant