This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @param string $html | |
* @param WC_Payment_Gateway $payment_method | |
*/ | |
function rcstr_payment_gateway_form_saved_payment_methods_html( string $html, WC_Payment_Gateway $payment_method ) { | |
return $html; | |
} | |
add_filter( 'wc_payment_gateway_form_saved_payment_methods_html', 'rcstr_payment_gateway_form_saved_payment_methods_html', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment