Express Checkout Buttons
-
Hi,
with the latest release the express checkout buttons are now showing back on top of the page.
The code below is not working anymore. Anyone has an idea on how to move the button back above the Payment section?Thanks,
Lukas/* Move Google and Apple Pay to bottom of the page */
remove_action( ‘woocommerce_checkout_before_customer_details’, array( WC_Stripe_Payment_Request::instance(), ‘display_payment_request_button_html’ ), 1 ); //removes the buttonremove_action( ‘woocommerce_checkout_before_customer_details’, array( WC_Stripe_Payment_Request::instance(), ‘display_payment_request_button_separator_html’ ), 2 ); // removes the separator under button
add_action( ‘woocommerce_review_order_before_payment’, array( WC_Stripe_Payment_Request::instance(), ‘display_payment_request_button_html’ ), 1 ); // adds the button before payments
- You must be logged in to reply to this topic.