Trigger request after checkout using Direct Bank Deposit (BACS)
-
I need to trigger request after complete the checkout process. There are two payment methods. 2Checkout and Direct Bank Transfer. This request should only trigger when payment methods BACS.
Can I use following hooks for that? If can, how to do that?
// Actions. add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'save_account_details' ) ); add_action( 'woocommerce_thankyou_bacs', array( $this, 'thankyou_page' ) ); // Customer Emails. add_action( 'woocommerce_email_before_order_table', array( $this, 'email_instructions' ), 10, 3 );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Trigger request after checkout using Direct Bank Deposit (BACS)’ is closed to new replies.