mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
https://stackoverflow.com/questions/63986726/change-specific-payment-gateway-title-in-woocommerce/64000593
7 lines
277 B
Text
7 lines
277 B
Text
add_filter( 'woocommerce_gateway_title', 'change_cheque_payment_gateway_title', 100, 2 );
|
|
function change_cheque_payment_gateway_title( $title, $payment_id ){
|
|
if( $payment_id === 'cheque' ) {
|
|
$title = __("Something else", "woocommerce");
|
|
}
|
|
return $title;
|
|
}
|