woocommerce_payment_gateway_save_new_payment_method_option_html
Filter the saved payment method checkbox HTML
Usage
add_filter( 'woocommerce_payment_gateway_save_new_payment_method_option_html', 'wp_kama_woocommerce_payment_gateway_save_new_method_option_html_filter', 10, 2 ); /** * Function for `woocommerce_payment_gateway_save_new_payment_method_option_html` filter-hook. * * @param string $html Checkbox HTML. * @param WC_Payment_Gateway $that Payment gateway instance. * * @return string */ function wp_kama_woocommerce_payment_gateway_save_new_method_option_html_filter( $html, $that ){ // filter... return $html; }
- $html(string)
- Checkbox HTML.
- $that(WC_Payment_Gateway)
- Payment gateway instance.
Changelog
Since 2.6.0 | Introduced. |
Where the hook is called
woocommerce_payment_gateway_save_new_payment_method_option_html
woocommerce/includes/abstracts/abstract-wc-payment-gateway.php 654
echo apply_filters( 'woocommerce_payment_gateway_save_new_payment_method_option_html', $html, $this ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped