woocommerce / woocommerce-paypal-payments

https://wordpress.org/plugins/woocommerce-paypal-payments/
GNU General Public License v2.0
61 stars 47 forks source link

Apple Pay and Google Pay buttons don't appear in PayPal Button stack on multi-step Checkout (3250) #2372

Closed stracker-phil closed 3 days ago

stracker-phil commented 1 week ago

Problem

Apple Pay and Google Pay buttons are not displayed during the payment step when using multistep checkout plugins.

Reason

Multistep checkout plugins hide elements of the checkout page using JavaScript and display them at later steps to create a wizard-like experience. Since the payment buttons are in the last step, they remain hidden on page load and do not initialize as expected.

Solution

Implement a simple timer that periodically checks the visibility of the payment-wrapper element and initializes the payment buttons once it becomes visible.

Implementation