• Resolved hudsontek

    (@hudsontek)


    A couple of questions. First the express payment is displayed in the wrong place. I’m using Cartflows. I moved the div down a level (in the browser dev tools) into the main wrapper div which seems to display correctly, but how can I make this change permanent? see pics:

    https://imgur.com/aJ8VseB

    https://imgur.com/0FRQf6L

    And finally, why is the express checkout option always displayed here, in the main payment selection, when no Apple Pay is detected?

    https://imgur.com/Z5JY21d

    • This topic was modified 1 year, 10 months ago by hudsontek.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Clayton R

    (@mrclayton)

    First the express payment is displayed in the wrong place. I’m using Cartflows.

    That sounds like a Cartflows issue, not a Stripe plugin problem. This plugin uses the woocommerce_checkout_before_customer_details action to render the express checkout section.

    And finally, why is the express checkout option always displayed here, in the main payment selection, when no Apple Pay is detected?

    Because Cartflows overrides the Stripe plugin’s styling. Apple Pay is designed to only show if it’s supported, but Cartflows has CSS that shows it no matter what. Cartflows should be aware of that since it’s come up many times before, but to date they have not fixed that behavior.

    Thanks

    Thread Starter hudsontek

    (@hudsontek)

    Thank you, I’m not trying out WP Funnels as an alternative. However I still have a problem with the express checkout messing up the layout of the checkout.

    See https://imgur.com/a/d71xJPs

    Plugin Author Clayton R

    (@mrclayton)

    However I still have a problem with the express checkout messing up the layout of the checkout.

    You probably just need to add some simple CSS so that the HTML containers stack instead of display inline. If you share a link I can provide you with that CSS.

    Thread Starter hudsontek

    (@hudsontek)

    I think the problem is because I’m using the 2-column checkout, so the form turns to ‘flex row’ …?

    *Link removed

    • This reply was modified 1 year, 10 months ago by hudsontek.
    Plugin Author Clayton R

    (@mrclayton)

    Add this CSS:

    .wpfnl-checkout .woocommerce form.woocommerce-checkout{
    flex-wrap: wrap !important;
    }

    .wc-stripe-banner-checkout.active{
    max-width: 100% !important;
    }
    Thread Starter hudsontek

    (@hudsontek)

    Thanks so much 🙂

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

The topic ‘Express checkout problems’ is closed to new replies.