Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'init', 'my_child_disable_filters', 100 );
  4.  
  5. function my_child_disable_filters() {
  6. // Remove Payment Method redirect on Checkout
  7. remove_action( 'woocommerce_checkout_order_processed', array( WC_GZDP_Contract_Helper::instance(), 'remove_gateway_redirect' ) );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement