woocommerce_payment_gateway_get_new_payment_method_option_html filter-hookWC 1.0

Usage

add_filter( 'woocommerce_payment_gateway_get_new_payment_method_option_html', 'wp_kama_woocommerce_payment_gateway_get_new_method_option_html_filter', 10, 2 );

/**
 * Function for `woocommerce_payment_gateway_get_new_payment_method_option_html` filter-hook.
 * 
 * @param  $html 
 * @param  $that 
 *
 * @return 
 */
function wp_kama_woocommerce_payment_gateway_get_new_method_option_html_filter( $html, $that ){

	// filter...
	return $html;
}
$html
-
$that
-

Where the hook is called

WC_Payment_Gateway::get_new_payment_method_option_html()
woocommerce_payment_gateway_get_new_payment_method_option_html
woocommerce/includes/abstracts/abstract-wc-payment-gateway.php 531
return apply_filters( 'woocommerce_payment_gateway_get_new_payment_method_option_html', $html, $this );

Where the hook is used in WooCommerce

Usage not found.