woocommerce_gateway_method_title filter-hook . WC 1.0
Return the title for admin screens.
Usage
add_filter( 'woocommerce_gateway_method_title', 'filter_function_name_941', 10, 2 ); function filter_function_name_941( $method_title, $that ){ // filter... return $method_title; }
- $method_title
- -
- $that
- -
Where the hook is called
woocommerce_gateway_method_title
woocommerce/includes/abstracts/abstract-wc-payment-gateway.php 174
return apply_filters( 'woocommerce_gateway_method_title', $this->method_title, $this );