From 0e4cd125c5059a0e5fc07e3bc949727f98d6ddaa Mon Sep 17 00:00:00 2001 From: thenbrent Date: Fri, 1 Nov 2013 14:13:26 -0700 Subject: [PATCH] Call add_payment_method_action() Part of #3396 --- includes/class-wc-form-handler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/class-wc-form-handler.php b/includes/class-wc-form-handler.php index 8da5e208b6e..aae1375d2bd 100644 --- a/includes/class-wc-form-handler.php +++ b/includes/class-wc-form-handler.php @@ -32,6 +32,7 @@ class WC_Form_Handler { add_action( 'init', array( $this, 'add_to_cart_action' ) ); add_action( 'wp', array( $this, 'pay_action' ), 20 ); + add_action( 'wp', array( $this, 'add_payment_method_action' ), 20 ); } /**