mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
5 lines
436 B
Text
5 lines
436 B
Text
add_action( 'init', 'remove_stripe_payment_request_from_cart_20200608', 99 );
|
|
function remove_stripe_payment_request_from_cart_20200608() {
|
|
remove_action( 'woocommerce_proceed_to_checkout', array( WC_Stripe_Payment_Request::instance(), 'display_payment_request_button_html' ), 1 );
|
|
remove_action( 'woocommerce_proceed_to_checkout', array( WC_Stripe_Payment_Request::instance(), 'display_payment_request_button_separator_html' ), 2 );
|
|
}
|