• Resolved playnotes

    (@playnotes)


    Hello,

    if i activate stripe sepa direct debit and stripe card, both methods work fine. I can choose one or another by clicking the ckeckbox. If i choose sepa, i can fill the iban and all work fine …

    BUT, i would like to use only sepa direct debit. If i only activate stripe sepa direct in admin wordpress, the iban input is disabled on front.

    Any idea?

    Thanks, Ben

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @playnotes,

    if i activate stripe sepa direct debit and stripe card, both methods work fine. I can choose one or another by clicking the ckeckbox. If i choose sepa, i can fill the iban and all work fine … BUT, i would like to use only sepa direct debit.

    The main Stripe option in the back end under WooCommerce > Settings > Payments has to be active as it is what allows Stripe to pull information and charge accordingly. This means you have to have both Stripe and Stripe iban active for it to work.

    You can hide the Stripe field from your checkout though, using some CSS. Here is the CSS that you can use to hide the specific Stripe main field but leave the iban field displaying:

    `
    li.wc_payment_method.payment_method_stripe {
    display: none;
    }
    `

    Please note that if this does not work 100%, you would need to reach out to your theme provider to fix it up. If you have any other questions please open a new thread and let us know!

    Sorry – here is the code:

    li.wc_payment_method.payment_method_stripe {
    display: none;
    }

    Thanks so much man, been pulling my hair out trying to figure out how to hide Stripe on checkout

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Sepa method iban input disabled’ is closed to new replies.