Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Payment Plugins

    (@mrclayton)

    Hi @maikelj1978

    The following code snippet will accomplish what you’re looking for:

    add_action('init', function(){
    	remove_action('woocommerce_checkout_before_customer_details', ['WC_Stripe_Field_Manager', 'output_banner_checkout_fields']);
    	add_action('woocommerce_review_order_before_payment', ['WC_Stripe_Field_Manager', 'output_banner_checkout_fields']);
    });

    I recommend using a code snippet plugin like the following to add that custom code: https://www.ads-software.com/plugins/code-snippets/

    You can replace the woocommerce_review_order_before_payment action with any other action that WooCommerce triggers on the checkout page to adjust the location of the buttons.

    Kind Regards

    Thread Starter maikelj1978

    (@maikelj1978)

    thanks you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I want to move the express checkout button’ is closed to new replies.